HTML DOM中的DOM Input Month禁用屬性用於返回一個布爾值,該布爾值表示應禁用或不禁用Month字段。默認情況下,禁用的元素以灰色顯示,並且不可用和un-clickable。
用法:
- 它返回禁用的屬性。
monthObject.disabled
- 用於設置禁用的屬性。
monthObject.disabled = true
屬性值:
- true:它指定禁用“月”字段。
- false:它指定不禁用“月”字段。
返回值:它會返回一個布爾值,即如果禁用“月”字段,則返回true;如果未禁用“月”字段,則返回false。
示例1:本示例返回Disabled屬性的值。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month disabled Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>
DOM Input Month disabled Property
</h2>
<form id="myGeeks">
<input type="month"
id="month_id"
name="geeks"
disabled>
</form>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="font-size:20px;">
</p>
<!-- Script to return the
value of disabled property-->
<script>
function myGeeks() {
var gfg =
document.getElementById(
"month_id").disabled;
document.getElementById(
"GFG").innerHTML = gfg;
}
</script>
</body>
</html>
輸出
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置或更改Disabled屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Month disabled Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>
DOM Input Month disabled Property
</h2>
<form id="myGeeks">
<input type="month"
id="month_id"
name="geeks"
disabled>
</form>
<br>
<button onclick="myGeeks()">
Click Here!
</button>
<p id="GFG"
style="font-size:20px;">
</p>
<!-- Script to set the disabled
attribute of Month field-->
<script>
function myGeeks() {
var gfg =
document.getElementById("month_id");
gfg.disabled = false;
var g = gfg.disabled;
document.getElementById(
"GFG").innerHTML = g;
}
</script>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:DOM輸入禁用月份的屬性支持的瀏覽器如下:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
注意:在Firefox中,輸入類型=“ month”元素不顯示任何日期字段或日曆。
相關用法
- HTML Input URL disabled用法及代碼示例
- HTML Input DatetimeLocal disabled用法及代碼示例
- HTML Input Password disabled用法及代碼示例
- HTML Input Text disabled用法及代碼示例
- HTML Input Radio disabled用法及代碼示例
- HTML Input Color disabled用法及代碼示例
- HTML Input Time disabled用法及代碼示例
- HTML Input Range disabled用法及代碼示例
- HTML Input Button disabled用法及代碼示例
- HTML Input FileUpload disabled用法及代碼示例
- HTML Input Week disabled用法及代碼示例
- HTML Input Email disabled用法及代碼示例
- HTML Input Submit disabled用法及代碼示例
- HTML Input Reset disabled用法及代碼示例
- HTML Input Datetime disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Month disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。