x
 
<!DOCTYPE html>
<html>
<body>
生日:<input type="date" id="myDate">
<p>单击按钮将日期字段设置为只读。</p>
<p><b>提示:</b>如需查看效果,请尝试在单击按钮前后的日期字段中键入内容。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="date" 的输入元素在 IE 11 和更早版本中不会显示为任何日期字段/日历。</p>
<script>
function myFunction() {
  document.getElementById("myDate").readOnly = true;
}
</script>
</body>
</html>