x
 
<!DOCTYPE html>
<html>
<body>
生日:<input type="date" id="myDate" value="2000-05-05">
<p>单击该按钮可更改日期字段的默认值。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="date" 的输入元素在 IE 11 和更早版本中不会显示为任何日期字段/日历。</p>
<script>
function myFunction() {
  document.getElementById("myDate").defaultValue = "2023-02-23";
}
</script>
</body>
</html>