HTML DOM中的DOM输入数字禁用属性用于返回一个布尔值,该布尔值表示应禁用或不禁用数字字段。默认情况下,禁用的元素以灰色显示,并且不可用和un-clickable。
用法:
- 它返回禁用的属性。
numberObject.disabled
- 用于设置禁用的属性。
numberObject.disabled = true
属性值:
- true:它指定数字字段被禁用。
- false:它指定数字字段未禁用。
返回值:它返回一个布尔值,即如果禁用数字字段,则返回true;如果未禁用数字字段,则返回false。
示例1:本示例返回Disabled属性的值。
<!DOCTYPE html>
<html>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Number disabled Property</h2>
<form id="myGeeks">
<input type="number"
id="myNumber" step="5" name="geeks"
placeholder="multiples of 5" disabled>
</form> <br><br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo" style="font-size:23px;color:green;"></p>
<script>
function myFunction() {
// Accessing input value
var x =
document.getElementById("myNumber").disabled;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击“打开”按钮之前:
单击按钮后:
示例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>DOM Input Number disabled Property</h2>
<form id="myGeeks">
<input type="number"
id="myNumber" step="5" name="geeks"
placeholder="multiples of 5" disabled>
</form> <br><br>
<button onclick="myFunction()">
Click Here!
</button>
<p id="demo" style="font-size:23px;color:green;"></p>
<script>
function myFunction() {
// Accessing input value
var x =
document.getElementById("myNumber").disabled = false;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:下面列出了DOM输入数字禁用属性支持的浏览器:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL disabled用法及代码示例
- HTML Input Search disabled用法及代码示例
- HTML Input Date disabled用法及代码示例
- HTML Input FileUpload disabled用法及代码示例
- HTML Input Checkbox disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Submit disabled用法及代码示例
- HTML Input Image disabled用法及代码示例
- HTML Input Email disabled用法及代码示例
- HTML Input Week disabled用法及代码示例
- HTML Input Text disabled用法及代码示例
- HTML Input Reset disabled用法及代码示例
- HTML Input Button disabled用法及代码示例
- HTML Input Range disabled用法及代码示例
- HTML Input Datetime disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Number disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。