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