x
 
<!DOCTYPE html>
<html>
<body>
日期:<input type="datetime-local" id="myLocalDate" value="2023-02-15T08:30:00">
<p>单击该按钮可更改本地日期时间字段的默认值。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="datetime-local" 的输入元素在 Firefox 中不会显示为任何日期时间字段/日历。</p>
<script>
function myFunction() {
  document.getElementById("myLocalDate").defaultValue = "2023-02-23T18:40:26.520";
}
</script>
</body>
</html>