jQueryでchangeイベントを記述するサンプルです。
サンプル
例)テキストボックスの値を変更するとアラート表示する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>changeサンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(document).ready(function(){ $("#txt1").change(function(){ var str = $(this).val(); alert(str); }); }); </script> </head> <body> <input type="text" id="txt1"> </body> </html> |
解説
- jQueryでクリックイベントを取得するには、changeを使用します。
- イベントが発生するのは、値を変更した後にフォーカスアウトした時点です。