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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。