指定した要素にフォーカスを当てるには、.focus() を使用します。
サンプルソース
例)ボタンを押すと、テキストボックス「txt1」にフォーカスを当てる
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="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(){ $('#txt1').focus(); }); }); </script> </head> <body> <input type="text" id="txt1" value="hoge"> <input type="button" id="btn1" value="ボタン"> </body> </html> |
解説
- テキストボックス以外でも、ラジオボタンやチェックボックスなど、フォーカスを当てられる要素ならfocus()を実行できます。