x
 
<!DOCTYPE html>
<html>
<body>
<input type="time" id="myTime">
<p>单击该按钮可禁用时间字段。</p>
<button onclick="myFunction()">试一试</button>
<script>
function myFunction() {
  document.getElementById("myTime").disabled = true;
}
</script>
</body>
</html>