亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML 5 <input> autofocus 屬性

實(shí)例

文本輸入字段被設(shè)置為當(dāng)頁面加載時獲得焦點(diǎn):

<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ī)定當(dāng)頁面加載時 input 元素應(yīng)該自動獲得焦點(diǎn)。

如果使用該屬性,則 input 元素會獲得焦點(diǎn)。

HTML 4.01 與 HTML 5 之間的差異

autofocus 屬性是 HTML5 中的新屬性。

語法

<input autofocus="autofocus">