简单教程
提交运行
代码编辑器:
<input type="time" id="myTime"> <p>点击按钮禁用 time 字段</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myTime").disabled = true; } </script>
运行结果: