HTML DOM中的DOM输入时间禁用属性用于设置或返回是否必须禁用输入时间字段。禁用的密码字段为un-clickable,并且无法使用。它是一个布尔属性,用于反映HTML Disabled属性。默认情况下,在所有浏览器中通常以灰色显示。
用法:
- 它返回禁用的属性。
timeObject.disabled
- 用于设置禁用的属性。
timeObject.disabled = true|false
属性值:
- true:它定义了“输入时间”字段被禁用。
- False:它具有默认值。它定义了输入时间字段未禁用。
返回值:它返回一个布尔值,表示是否禁用了输入时间字段。
示例1:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input Time disabled Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Time disabled Property
</h2>
<label for="uname"
style="color:green">
<b>Enter time</b>
</label>
<input type="time"
id="gfg"
name="Geek_time"
placeholder="Enter time"
step="5"
min="16:00"
max="22:00"
disabled>
<br>
<br>
<button type="button"
onclick="geeks()">
Click
</button>
<p id="GFG"
style="font-size:24px;
color:green'">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").disabled;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input Time disabled Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Time disabled Property
</h2>
<label for="uname"
style="color:green">
<b>Enter time</b>
</label>
<input type="time"
id="gfg"
name="Geek_time"
placeholder="Enter time"
step="5"
min="16:00"
max="22:00"
disabled>
<br>
<br>
<button type="button"
onclick="geeks()">
Click
</button>
<p id="GFG"
style="font-size:24px;
color:green'">
</p>
<script>
function geeks() {
var link =
document.getElementById(
"gfg").disabled = false;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:DOM输入支持的浏览器禁用了以下时间属性:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL disabled用法及代码示例
- HTML Input Color disabled用法及代码示例
- HTML Input FileUpload disabled用法及代码示例
- HTML Input Range disabled用法及代码示例
- HTML Input Radio disabled用法及代码示例
- HTML Input Search disabled用法及代码示例
- HTML Input Week disabled用法及代码示例
- HTML Input Date disabled用法及代码示例
- HTML Input Checkbox disabled用法及代码示例
- HTML Input DatetimeLocal disabled用法及代码示例
- HTML Input Month disabled用法及代码示例
- HTML Input Datetime disabled用法及代码示例
- HTML Input Button disabled用法及代码示例
- HTML Input Password disabled用法及代码示例
- HTML Input Text disabled用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Time disabled Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。