html5小趣味知识点系列,一autofocus

<!DOCTYPE html>
<html >
<head>
    <meta charset="UTF-8">
    <title>autofocus</title>
</head>
<body>
    <input type="text" autofocus value="页面中只能有一个哦">
    <!-- 如果出现多个属性 那么以第一个出现该属性的元素为准 -->
    <!-- 常用于网站的搜索按钮的input -->
</body>
</html>