<html>
<body>
日期:
<input type="date" id="myDate" name="bday" min="1980-01-01" max="2000-01-01">
<p>单击该按钮可更改日期字段的 max 属性的值。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="date" 的输入元素在 IE 11 和更早版本中不会显示为任何日期字段/日历。</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myDate").max = "2023-02-23";
document.getElementById("demo").innerHTML = "max 属性的值已从“2000-01-01”更改为“2023-02-23”。";
}
</script>
</body>
</html>