HTML DOM中的Button autofocus属性用于设置或返回在页面加载时按钮是否应该获得焦点。此属性用于反映HTML自动对焦属性。
用法:
- 它用于返回自动对焦属性。
buttonObject.autofocus
- 用于设置自动对焦属性。
buttonObject.autofocus = true|false
- true:它定义了按钮元素获得焦点。
- false:它是默认值。它定义了Button元素没有获得焦点。
- 谷歌浏览器
- Internet Explorer 10.0
- Firefox
- Opera
- Safari
属性值:
返回值:它返回一个布尔值,该值表示Button元素获得自动对焦,否则返回False。
例:本示例返回按钮自动对焦值。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM button autofocus Property
</title>
</head>
<body style="text-align:center">
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
HTML DOM button autofocus Property
</h2>
<!-- Assign id to the Button. -->
<button id="GFG" autofocus>
Submit
</button>
<br><br>
<p>
Click on "button" Button to return
button autofocus Property.
</p>
<button onclick="Geeks()">
button
</button>
<p id="sudo"></p>
<!-- Script to return button autofocus value -->
<script>
function Geeks() {
// Return Boolean value to represent Button.
var x = document.getElementById("GFG").autofocus;
document.getElementById("sudo").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM Button autofocus属性支持的浏览器:
相关用法
- HTML Input Button autofocus用法及代码示例
- HTML <button> autofocus属性用法及代码示例
- HTML Textarea autofocus用法及代码示例
- HTML Input URL autofocus用法及代码示例
- HTML Select autofocus用法及代码示例
- HTML Input Search autofocus用法及代码示例
- HTML Input Time autofocus用法及代码示例
- HTML Input Email autofocus用法及代码示例
- HTML Input Password autofocus用法及代码示例
- HTML Input DatetimeLocal autofocus用法及代码示例
- HTML Input Date autofocus用法及代码示例
- HTML Input Datetime autofocus用法及代码示例
- HTML Input Week autofocus用法及代码示例
- HTML Input Range autofocus用法及代码示例
- HTML Input Checkbox autofocus用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Button autofocus Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。