运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> Radio button:<input type="radio" id="myRadio" checked> <p>Click the "Try it" button to find out whether the radio button is checked, or not.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myRadio").checked; document.getElementById("demo").innerHTML = x; } </script> </body> </html>