Skip to content

Instantly share code, notes, and snippets.

@okuden-labo
Created March 19, 2015 03:46
Show Gist options
  • Save okuden-labo/662eda34bba93f5d2a31 to your computer and use it in GitHub Desktop.
Save okuden-labo/662eda34bba93f5d2a31 to your computer and use it in GitHub Desktop.
jQueryでアラートを表示する
//テキストボックスからフォーカスが外れた時
//ボタンを押したとき(id指定)
//テキストをクリックしたとき(タグとクラス指定)
jQuery(function ($) {
// テキストボックスからフォーカスが外れた時
$("#form1 [name=text1]").blur(function() {
alert($('#form1 [name=text1]').val());
});
// ボタンを押したとき(id指定)
$("#button1").click(function() {
alert($('#form1 [name=text1]').val());
});
// テキストをクリックしたとき(タグとクラス指定)
$("div.class1").click(function() {
alert($('#form1 [name=text1]').val());
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment