
自动对焦属性是一个布尔属性。如果存在,它指定 元素在页面加载时应自动获得焦点。下面给出一个例子
<!DOCTYPE html>
<html>
<body>
<form action = "/new.php">
First Name: <input type = "text" name = "fname" autofocus><br>
Last Name: <input type = "text" name = "lname"><br>
<input type="submit">
</form>
</body>
</html>

