在html中,焦點是遊標的意思,元素透過滑鼠點擊就可以獲得遊標,也即獲得焦點;可以利用autofocus屬性來規定當頁面載入時元素會自動獲得焦點,該屬性是一個布林屬性,若指定元素設定該屬性則會獲得焦點,語法為「」。
本教學操作環境:windows10系統、HTML5版本、Dell G3電腦。
焦點在HTML和JS中是指遊標。
焦點在JS和HTML裡是在頁面上螢幕中閃爍的小豎線,滑鼠點擊就可獲得遊標,Tab鍵可依照設定的Tabindex來進行切換焦點。
autofocus 屬性規定當頁面載入時 input 元素應該會自動獲得焦點。
如果使用該屬性,則 input 元素會獲得焦點。
autofocus 屬性是 HTML5 中的新屬性。
autofocus 屬性是一個布林屬性。
autofocus 屬性規定當頁面載入時 元素應該會自動獲得焦點。
語法如下:
<input autofocus>
或
<input autofocus="autofocus">
範例如下:
<form action="demo_form.asp"> First name: <input type="text" name="fname" autofocus><br> Last name: <input type="text" name="lname"><br> <input type="submit"> </form>
輸出結果:
一旦刷新頁面就會獲得焦點
以上是html焦點是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!