最新的Web開發教程
 

HTML <input> autofocus Attribute

<HTML <input>標籤

"First name"輸入字段自動獲得焦點頁面加載時:

<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>
試一試»

定義和用法

autofocus屬性是一個布爾屬性。

如果存在,它指定一個<input>元素應該自動獲得焦點的頁面加載時。


瀏覽器支持

在表中的數字指定完全支持屬性所述第一瀏覽器的版本。

屬性
autofocus 5 10.0 4 5 9.6

HTML 4.01和HTML5之間的差異

autofocus屬性,HTML5是新的。


HTML和XHTML之間的差異

在XHTML中,最小的屬性是被禁止的,而autofocus屬性必須被定義為<input autofocus="autofocus" />


句法

<input autofocus>

<HTML <input>標籤