HTML DOM中的DOM输入时间readOnly属性用于设置或返回“时间字段”是否为只读。这意味着用户无法修改或更改特定元素中已经存在的内容(但是,用户可以对其进行制表,突出显示并从中复制文本),而JavaScript可用于更改只读值,并使输入字段可编辑。
用法:
- 它用于返回readOnly属性。
timeObject.readOnly
- 它用于设置readOnly属性。
timeObject.readOnly = true|false
属性值:
- true:它定义“时间”字段为只读。
- false:它定义了“时间”字段不是只读的。
返回值:它返回一个布尔值,表示“时间”字段是只读的。
示例1:本示例说明了如何返回属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input Time readOnly Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Time readOnly Property
</h2>
<label for="uname"
style="color:green">
<b>Enter time</b>
</label>
<input type="time"
id="gfg"
placeholder="Enter time"
readonly>
<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").value;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
示例2:本示例说明了如何设置属性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input Time readOnly Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Time readOnly Property
</h2>
<label for="uname"
style="color:green">
<b>Enter time</b>
</label>
<input type="time"
id="gfg"
placeholder="Enter time"
step="5"
readonly>
<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").readOnly = "false";
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
输出:
在单击按钮之前:
单击按钮后:
支持的浏览器:DOM输入支持的浏览器的Time readOnly属性如下所示:
- 谷歌浏览器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相关用法
- HTML Input URL readOnly用法及代码示例
- HTML Input Number readOnly用法及代码示例
- HTML Input Search readOnly用法及代码示例
- HTML Input Week readOnly用法及代码示例
- HTML Input Date readOnly用法及代码示例
- HTML Input DatetimeLocal readOnly用法及代码示例
- HTML Input Datetime readOnly用法及代码示例
- HTML Input Month readOnly用法及代码示例
- HTML Input Password readOnly用法及代码示例
- HTML Input Email readOnly用法及代码示例
- HTML Input Text readOnly用法及代码示例
- HTML Input Time value用法及代码示例
- HTML Input Time min用法及代码示例
- HTML Input Time max用法及代码示例
- HTML Input Time name用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Input Time readOnly Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。