BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> </head> <body> <form> 用户名:<input id="usrname" type="text"><br> 密码:<input id="pwd" type="password"> </form> <p>单击下面的按钮禁用上面的密码字段</p> <button onclick="disableElement()">禁用密码字段</button> <script> function disableElement(){ document.getElementById("pwd").disabled=true; } </script> </body> </html>
运行结果