x
 
<!DOCTYPE html>
<html>
<body>
日期和时间:
<input type="datetime-local" id="myLocalDate" min="2000-01-01T08:30:00" max="2023-02-28T22:55:30">
<p>单击该按钮可更改本地日期时间字段的最小属性值。</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").min = "2010-06-30T12:00:00";
  document.getElementById("demo").innerHTML = "min 属性的值已从“2000-01-01T08:30:00”更改为“2010-06-30T12:00:00”。";
}
</script>
</body>
</html>