Latest web development tutorials

HTML select autofocus 屬性

HTML select 標籤參考手冊 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>

嘗試一下»

瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Internet Explorer 10、Opera、Chrome 和Safari 支持autofocus 屬性。

注意: Firefox或者Internet Explorer 9及之前的版本不支持<select>標籤的autofocus屬性。


定義和用法

autofocus 屬性是一個布爾屬性。

autofocus 屬性規定下拉列表在頁面加載時自動獲得焦點。


HTML 4.01 與HTML5之間的差異

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


HTML 與XHTML 之間的差異

在XHTML 中,禁止屬性最小化,autofocus 屬性必須定義為<select autofocus="autofocus">。


語法

<select autofocus>


HTML select 標籤參考手冊 HTML <select>標籤