HTML 5 <input> autofocus 屬性
實例
文本輸入字段被設置為當頁面加載時獲得焦點:
<form action="demo_form.asp">
First name:<input type="text" name="fname" autofocus="autofocus"
/><br />
Last name: <input type="text" name="lname" /><br />
<input type="submit" />
</form>
定義和用法
autofocus 屬性規(guī)定當頁面加載時 input 元素應該自動獲得焦點。
如果使用該屬性,則 input 元素會獲得焦點。
HTML 4.01 與 HTML 5 之間的差異
autofocus 屬性是 HTML5 中的新屬性。
語法
<input autofocus="autofocus">