输入日期步骤属性用于设置或返回日期字段的步骤属性的值。输入步长属性可用于指定用户在日期字段中打开日历时要选择的法定日期间隔。
用法:
- 要返回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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。