HTML DOM中的“禁用输入重置”属性用于设置或返回一个布尔值,该布尔值表示应禁用或不禁用重置按钮字段。默认情况下,禁用的元素以灰色显示,并且不可用和不可单击。
用法:
- 它返回禁用的属性。
resetObject.disabled
- 用于设置禁用的属性。
resetObject.disabled = true|false
属性值:
- true:它指定重置按钮已禁用。
- false:它指定重置按钮未禁用。
返回值:它会返回一个布尔值,即如果禁用了重置按钮字段,则返回true;如果未禁用重置字段,则返回false。
范例1:本示例返回Disabled属性的值。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input reset disabled property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input reset disabled Property</h2>
<input type="reset" id="GeekReset" name="geeks"
value="Reset form" disabled>
<p>
Click on below button to return the Property
</p>
<button onclick="myGeeks()">
Click Here
</button>
<p id="Geek_p" style="font-size:30px; color:green;"></p>
<script>
function myGeeks() {
// Access input element with type = "reset"
var x = document.getElementById("GeekReset").disabled;
document.getElementById("Geek_p").innerHTML = x;
}
</script>
</body>
</html>
输出:
单击按钮之前:
单击按钮后:
范例2:本示例说明了如何设置“禁用输入重置”属性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input reset disabled property
</title>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input reset disabled Property</h2>
<input type="reset" id="GeekReset" name="geeks"
value="Reset form" disabled>
<p>
Click on below button to set the Property
</p>
<button onclick="myGeeks()">
Click Here
</button>
<p id="Geek_p" style="font-size:30px; color:green;"></p>
<!-- Script to use Input Reset disabled property -->
<script>
function myGeeks() {
var x = document.getElementById("GeekReset").disabled
= false;
document.getElementById("Geek_p").innerHTML = x;
}
</script>
</body>
</html>
输出:
单击按钮之前:
单击按钮后:
支持的浏览器:DOM输入重置禁用属性支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL disabled用法及代码示例
- HTML Input Reset value用法及代码示例
- HTML Input Reset name用法及代码示例
- HTML Input Color disabled用法及代码示例
- HTML Input Datetime disabled用法及代码示例
- HTML Input Search disabled用法及代码示例
- HTML Input Password disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Checkbox disabled用法及代码示例
- HTML Input Week disabled用法及代码示例
- HTML Input Range disabled用法及代码示例
- HTML Input Time disabled用法及代码示例
- HTML Input Email disabled用法及代码示例
- HTML Input Button disabled用法及代码示例
- HTML Input FileUpload disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Reset disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。