<html>
<body>
<input type="date" id="myDate" value="2000-05-05">
<p>点击按钮获取 date 字段的日期。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myDate").value;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>