HTML DOM中的DOM輸入時間要求屬性用於設置或返回在提交表單時是否應填寫輸入時間字段。此屬性用於反映HTML必需屬性。
用法:
- 它返回“需要輸入時間”屬性。
timeObject.required
- 它用於設置需要輸入時間的屬性。
timeObject.required = true|false
屬性值:
- true:它指定在提交表單之前必須填寫“時間”字段。
- false:它是默認值。它指定提交表單之前不得填寫“時間”字段。
返回值:它返回一個布爾值,該值表示在提交表單之前必須填寫或不填寫時間字段。
示例1:本示例返回“需要輸入時間”屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input Time required Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Time required Property
</h2>
<label for="uname"
style="color:green">
<b>Enter time</b>
</label>
<input type="time"
id="gfg"
placeholder="Enter time"
step="5"
required>
<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").required;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
輸出:
單擊“打開”按鈕之前:
單擊按鈕後:
示例2:本示例說明了如何設置“輸入時間要求”屬性。
<!DOCTYPE html>
<html>
<head>
<title>
DOM Input Time required Property
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksForGeeks
</h1>
<h2>
DOM Input Time required Property
</h2>
<label for="uname"
style="color:green">
<b>Enter time</b>
</label>
<input type="time"
id="gfg"
placeholder="Enter time"
step="5"
required>
<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").required = false;
document.getElementById(
"GFG").innerHTML = link;
}
</script>
</center>
</body>
</html>
輸出:
在單擊按鈕之前:
單擊按鈕後:
支持的瀏覽器:下麵列出了DOM輸入所需的瀏覽器所需的時間屬性:
- 穀歌瀏覽器
- Internet Explorer 10.0以上
- Firefox
- Opera
- Safari
相關用法
- HTML Input URL required用法及代碼示例
- HTML Input Radio required用法及代碼示例
- HTML Input Text required用法及代碼示例
- HTML Input DatetimeLocal required用法及代碼示例
- HTML Input Search required用法及代碼示例
- HTML Input Number required用法及代碼示例
- HTML Input Date required用法及代碼示例
- HTML Input Password required用法及代碼示例
- HTML Input Week required用法及代碼示例
- HTML Input Checkbox required用法及代碼示例
- HTML Input Month required用法及代碼示例
- HTML Input FileUpload required用法及代碼示例
- HTML Input Email required用法及代碼示例
- HTML Input Datetime required用法及代碼示例
- HTML Input Time max用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | DOM Input Time required Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。