编辑下面的代码:
【加编码】
查看效果 »
<html> <body> <input type="time" id="myTime"> <p>点击按钮禁用 time 字段。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myTime").disabled = true; } </script> </body> </html>
结果:
【此窗口】
帮助?