<html>
<body>
日期:<input type="datetime-local" id="myLocalDate" step="5">
<p>单击该按钮可显示本地日期时间字段的 step 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="datetime-local" 的输入元素在 Firefox 中不会显示为任何日期时间字段/日历。</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myLocalDate").step;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>