フォームの各入力・選択欄にフォーカスを当てる
フォームの各入力・選択欄にフォーカスを当てるには、element.focus
メソッドを使用します。
構文
element.focus();
サンプルコード
JavaScript
var formElement = document.getElementById('form1'),
inputElement = document.getElementById('age');
inputElement.focus();