HTML DOM中的DOM Input Week禁用屬性用於返回一個布爾值,該布爾值表示應該禁用或不禁用Week字段。默認情況下,禁用的元素以灰色顯示,並且不可用和un-clickable。
用法:
- 它返回禁用的屬性。
weekObject.disabled
- 用於設置禁用的屬性。
weekObject.disabled = true
屬性值:
- true:它指定禁用周字段。
- false:它指定不禁用星期字段。
返回值:它返回一個布爾值,即如果禁用周字段,則返回true;如果未禁用周字段,則返回false。
示例1:本示例返回Disabled屬性的值。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Week disabled Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Week disabled Property</h2>
<form id="myGeeks">
<input type="week" id="week_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("week_id").disabled;
document.getElementById("GFG").innerHTML = gfg;
}
</script>
</body>
</html>
輸出
在單擊按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置或更改Disabled屬性。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Input Week disabled Property
</title>
</head>
<body style="text-align:center;">
<h1>GeeksForGeeks</h1>
<h2>DOM Input Week disabled Property</h2>
<form id="myGeeks">
<input type="week" id="week_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 week field-->
<script>
function myGeeks() {
var gfg = document.getElementById("week_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中,輸入type =“ week”元素不顯示任何日期字段或日曆。
相關用法
- HTML Input Week name用法及代碼示例
- HTML Input Week max用法及代碼示例
- HTML Input Week min用法及代碼示例
- HTML Input Week value用法及代碼示例
- HTML Input URL disabled用法及代碼示例
- HTML Input Week required用法及代碼示例
- HTML Input Week autofocus用法及代碼示例
- HTML Input Week defaultValue用法及代碼示例
- HTML Input Week type用法及代碼示例
- HTML Input Week autocomplete用法及代碼示例
- HTML Input Week readOnly用法及代碼示例
- HTML Input Week form用法及代碼示例
- HTML Input Week step用法及代碼示例
- HTML Input Email disabled用法及代碼示例
- HTML Input Datetime disabled用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Week disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。