輸入日期禁用屬性用於設置或返回是否應禁用日期字段。元素變得不可用,如果禁用,則變為un-clickable。這些元素通常由瀏覽器顯示為灰色。 HTML禁用屬性由“日期禁用”屬性反映。
用法:
- 要返回禁用的屬性:
inputdateObject.disabled
- 設置禁用的屬性:
inputdateObject.disabled = true|false
屬性值
- true | false:它用於指定是否應禁用日期時間字段。
以下示例程序旨在說明禁用日期的屬性:
例:禁用日期時間字段。
<!DOCTYPE html>
<html>
<head>
<title>Input Date disabled Property in HTML
</title>
<style>
h1 {
color:green;
}
h2 {
font-family:Impact;
}
body {
text-align:center;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2> Input Date disabled Property
</h2>
<br>
<input type="date"
id="test_Date">
<p>To disable the date field,
double click the "Disable" button.
</p>
<button ondblclick="My_Date()">Disable
</button>
<script>
function My_Date() {
// Set disabled = true.
document.getElementById(
"test_Date").disabled = true;
}
</script>
</body>
</html>
輸出:
原來:
在單擊禁用按鈕之前:
單擊禁用按鈕後:
支持的瀏覽器:
- 蘋果Safari
- IE瀏覽器
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML Input URL disabled用法及代碼示例
- HTML Input DatetimeLocal disabled用法及代碼示例
- HTML Input Submit disabled用法及代碼示例
- HTML Input Checkbox disabled用法及代碼示例
- HTML Input Range disabled用法及代碼示例
- HTML Input Button disabled用法及代碼示例
- HTML Input Password disabled用法及代碼示例
- HTML Input Search disabled用法及代碼示例
- HTML Input Time disabled用法及代碼示例
- HTML Input Color disabled用法及代碼示例
- HTML Input Image disabled用法及代碼示例
- HTML Input Radio disabled用法及代碼示例
- HTML Input Email disabled用法及代碼示例
- HTML Input Datetime disabled用法及代碼示例
- HTML Input Number disabled用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Input Date disabled Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。