x
 
<!DOCTYPE html>
<html>
<body>
日期和时间:
<input type="datetime" id="myDatetime" min="2000-01-01T08:30Z" max="2023-02-28T22:55Z">
<p>单击该按钮可更改日期时间字段的 max 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="datetime" 的 input 元素在除 Safari 之外的任何主要浏览器中都不会显示为任何日期时间字段/日历。</p>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myDatetime").max = "2025-12-31T23:59Z";
  document.getElementById("demo").innerHTML = "max 属性的值已从“2023-02-28T22:55Z”更改为“2025-12-31T23:59Z”。";
}
</script>
</body>
</html>