Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaScriptを使用せずに、フォーム内の特定のボタンにフォーカスを設定することは可能ですか?
いいえの場合、jsでこれを行うにはどうすればよいですか?
前もって感謝します。
HTML5では、タグ<button>に属性autofocusがあり、ページの読み込み時にボタンにフォーカスを設定します。
<button>
autofocus
javascriptを介してボタンにフォーカスを設定するには:
document.getElementById("myButton").focus();