最新的Web開發教程
 

HTML <select> autofocus Attribute

<HTML <select>標籤

具有自動對焦的下拉列表:

<select autofocus>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="opel">Opel</option>
  <option value="audi">Audi</option>
</select>
試一試»

定義和用法

autofocus屬性是一個布爾屬性。

如果存在,則表示該下拉列表中會自動獲得焦點的頁面加載時。


瀏覽器支持

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

屬性
autofocus 10.0 不支持

HTML 4.01和HTML5之間的差異

autofocus屬性是新換的<select>在HTML5標籤。


HTML和XHTML之間的差異

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


句法

<select autofocus>

<HTML <select>標籤