要素にイベントを一度に複数追加するには、.onを使用します。
サンプルソース
例)id="txt1"要素にイベントを複数定義する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<!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({ keydown: function(){ // キーダウン時 $('#txt2').text('keydown'); }, keyup: function(){ // キーアップ時 $('#txt2').text('keyup'); }, focus: function(){ // フォーカスイン時 $('#txt2').text('focus'); }, blur: function(){ // フォーカスアウト時 $('#txt2').text('blur'); } }); }); </script> </head> <body> <input type="text" id="txt1" value="hoge"> <div id="txt2"> </div> </body> </html> |
実行サンプル
動作確認ができます。
解説
- 対象要素にonメソッドで複数イベントを設定すればOKです。
- 指定するイベントは1つのみでも問題ありません。