フォーカスが当たったイベントを取得するには.focusinを使用します。
サンプルソース
例)フォーカスが当たったイベントを取得する
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>Sample</title> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ //focusinイベント $('#txt1').focusin(function(){ console.log('フォーカスインイベントが発生しました'); }); }); </script> </head> <body> <input type="text" id="txt1" > </body> </html> |
解説
- focusinイベントは、text, checkbox, radio, select, textareaで使用できます。