BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function check(){ document.getElementById("red").checked=true } function uncheck(){ document.getElementById("red").checked=false } </script> </head> <body> <form> 你更喜欢哪种颜色?<br> <input id="red" name="colors" type="radio">红色<br> <input id="blue" name="colors" type="radio">蓝色<br> <input id="green" name="colors" type="radio">绿色 </form> <button onclick="check()" type="button">选择 "红色"</button> <button onclick="uncheck()" type="button">不选择 "红色"</button> </body> </html>
运行结果