BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> </head> <body> <form> Cats:<input id="cats" type="checkbox"><br> Dogs:<input id="dogs" type="checkbox"> </form> <p>点击下面按钮禁用上面的第一个选择框。</p> <button onclick="disableElement()">禁用选择框</button> <script> function disableElement(){ document.getElementById("cats").disabled=true; } </script> </body> </html>
运行结果