让“名字”输入字段在页面加载时自动获得焦点:
<form action="/action_page.php">
<label for="fname">名:</label>
<input type="text" id="fname" name="fname" autofocus><br><br>
<label for="lname">姓:</label>
<input type="text" id="lname" name="lname"><br><br>
<input type="submit">
</form>
<form action="/action_page.php"> <label for="fname">名:</label> <input type="text" id="fname" name="fname" autofocus><br><br> <label for="lname">姓:</label> <input type="text" id="lname" name="lname"><br><br> <input type="submit"> </form>
autofocus
属性是一个布尔属性。
如果存在,它指定 <input>
元素应在页面加载时自动获得焦点。
表中的数字指定了完全支持该属性的第一个浏览器版本。
属性 Attribute | |||||
---|---|---|---|---|---|
autofocus | 5.0 | 11.0 | 4.0 | 5.0 | 9.6 |
<input autofocus>