简单教程
提交运行
代码编辑器:
<script> function check(){ document.getElementById("red").checked=true } function uncheck(){ document.getElementById("red").checked=false } </script> <form> 你更喜欢哪种颜色?<br> <input type="radio" name="colors" id="red">红色<br> <input type="radio" name="colors" id="blue">蓝色<br> <input type="radio" name="colors" id="green">绿色 </form> <button type="button" onclick="check()">选择 "红色"</button> <button type="button" onclick="uncheck()">不选择 "红色"</button>
运行结果: