<html>
<body>
<input type="date" id="myDate" readonly>
<p>点击按钮查看 date 字段是否只读。</p>
<p id="demo"></p>
<button onclick="myFunction()">点我</button>
<script>
function myFunction() {
var x = document.getElementById("myDate").readOnly;
document.getElementById("demo").innerHTML=x;
}
</script>
</body>
</html>