複数のイベントに同じ処理を追加するサンプルです。
サンプルソース
例)テキストボックスのonfocusとonblurに同じ処理を記述する
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>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $("#txt1").on("focus blur", function(){ $('#dv1').text(new Date()); }); }); </script> </head> <body> <input type="text" id="txt1" value="hoge"> <div id="dv1"></div> </body> </html> |
解説
- onメソッドに複数のメソッドを羅列すればOKです。