輸入日期步驟屬性用於設置或返回日期字段的步驟屬性的值。輸入步長屬性可用於指定用戶在日期字段中打開日曆時要選擇的法定日期間隔。
用法:
- 要返回step屬性:
inputdateObject.step
- 設置step屬性:
inputdateObject.step = number
屬性值
- number:用於指定合法的日期間隔,默認設置為1。
以下示例程序旨在說明Date步驟屬性:
例:更改法定的時間間隔。
<!DOCTYPE html>
<html>
<head>
<title>
Input Date Step 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 Step Property
</h2>
<br>
<input type="date"
id="Test_Date">
<p>To increase the step so that the
user can only select every second
day in the calendar, double click
the "Update Step" button.
</p>
<button ondblclick="My_Date()">
Update Step
</button>
<p id="test"></p>
<script>
function My_Date() {
document.getElementById(
"Test_Date").step = "2";
document.getElementById(
"test").innerHTML =
"Step has been set to '2'.";
}
</script>
</body>
</html>
輸出:
單擊按鈕後
支持的瀏覽器:
- 蘋果Safari
- IE瀏覽器
- Firefox
- 穀歌瀏覽器
- Opera
相關用法
- HTML Input Time step用法及代碼示例
- HTML Input DatetimeLocal step用法及代碼示例
- HTML Input Week step用法及代碼示例
- HTML Input Number step用法及代碼示例
- HTML Input Range step用法及代碼示例
- HTML Input Month step用法及代碼示例
- HTML Input Date name用法及代碼示例
- HTML Input Date value用法及代碼示例
- HTML Input Date max用法及代碼示例
- HTML Input Date min用法及代碼示例
- HTML Input Date disabled用法及代碼示例
- HTML Input Date autocomplete用法及代碼示例
- HTML Input Date form用法及代碼示例
- HTML Input Date autofocus用法及代碼示例
- HTML Input Date defaultValue用法及代碼示例
注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM Input Date step Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。