BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function displayResult(browser){ document.getElementById("result").value=browser } </script> </head> <body> <p>选择你最喜欢的浏览器:</p> <form> <input name="browser" onclick="displayResult(this.value)" type="radio" value="Internet Explorer">Internet Explorer<br> <input name="browser" onclick="displayResult(this.value)" type="radio" value="Firefox">Firefox<br> <input name="browser" onclick="displayResult(this.value)" type="radio" value="Opera">Opera<br> <input name="browser" onclick="displayResult(this.value)" type="radio" value="Google Chrome">Google Chrome<br> <input name="browser" onclick="displayResult(this.value)" type="radio" value="Safari">Safari<br><br> 你最喜欢的浏览器是: <input id="result" type="text"> </form> </body> </html>
运行结果