<html>
<body>
时间: <input type="time" id="myTime">
<p>点击按设置 time 字段为只读。</p>
<p><strong>提示:</strong> 为了查看效果,你可以在点击按钮前后在 time 字段中尝试输入数据。</p>
<button onclick="myFunction()">点我</button>
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("myTime").readOnly = true;
}
</script>
</body>
</html>