HTML <input> autofocus属性用于指定页面加载时输入字段必须自动获得焦点。它是一个布尔属性。
用法:
<input autofocus>
例:此示例说明<input>元素中自动对焦属性的用法。
<!DOCTYPE html>
<html>
<head>
<title>
HTML |
<input>autofocus Attribute
</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
HTML |
<input>autofocus Attribute
</h2> Name:
<input type="text" autofocus>
<br>
<br>
<!-- Assign id to the Button. -->
<button id="GFG">
Submit
</button>
<br>
</body>
</html>
输出:
支持的浏览器:HTML | <input> autofocus属性在下面列出:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML autofocus属性用法及代码示例
- HTML <select> autofocus属性用法及代码示例
- HTML <button> autofocus属性用法及代码示例
- HTML <textarea> autofocus属性用法及代码示例
- HTML Select autofocus用法及代码示例
- HTML Input URL autofocus用法及代码示例
- HTML Button autofocus用法及代码示例
- HTML Textarea autofocus用法及代码示例
- HTML Input Radio autofocus用法及代码示例
- HTML Input Email autofocus用法及代码示例
- HTML Input Text autofocus用法及代码示例
- HTML Input Week autofocus用法及代码示例
- HTML Input image autofocus用法及代码示例
- HTML Input Button autofocus用法及代码示例
- HTML Input Checkbox autofocus用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <input> autofocus Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。