HTML <button> 標簽
設置了 autofocus 屬性的按鈕,將在頁面加載后自動獲取焦點,請參考下述示例:
實例
按鈕使用 autofocus 屬性:
<button type="button" autofocus>點我!</button>
瀏覽器支持
Internet Explorer 10, Firefox, Chrome, 和 Safari 支持autofocus 屬性。
注意:Internet Explorer 9 以及更早IE版本不支持 autofocus 屬性。
定義和用法
autofocus 屬性是一個 boolean(布爾) 屬性。
autofocus 屬性規定當頁面加載時按鈕應當自動地獲得焦點。
HTML 4.01 與 HTML5之間的差異
autofocus 屬性是 HTML5 <button> 標簽的新屬性。
HTML 與 XHTML之間的差異
在 XHTML 中, 不允許屬性簡寫,autofocus 屬性必須定義為 <button autofocus="autofocus">。
語法
<button type="button" autofocus>
HTML <button> 標簽