x
 
<!DOCTYPE html>
<html>
<body>
<form action="/demo/htmldom/action_page.php">
  时间:<input type="time" id="myTime" name="usr_time" required>
  <input type="submit">
</form>
<p>请点击“试一试”按钮,查看是否必须在提交表格前填写时间字段。</p>
<button onclick="myFunction()">试一试</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("myTime").required;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>