x
 
<!DOCTYPE html>
<html>
<body>
<form action="/demo/htmldom/action_page.php">
  日期: <input type="date" id="myDate" name="date" required>
  <input type="submit">
</form>
<p>请单击“试一试”按钮,了解是否必须在提交表格前填写日期字段。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注意:</b>type="date" 的输入元素在 IE 11 和更早版本中不会显示为任何日期字段/日历。</p>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myDate").required;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>