BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> </head> <body> 时间: <input id="myTime" type="time"> <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>
运行结果