案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function check(browser)
5
  {
6
  document.getElementById("answer").value=browser
7
  }
8
</script>
9
</head>
10
<body>
11
12
<p>您喜欢哪款浏览器?</p>
13
14
<form>
15
<input type="radio" name="browser" onclick="check(this.value)" value="Internet Explorer">Internet Explorer<br />
16
<input type="radio" name="browser" onclick="check(this.value)" value="Firefox">Firefox<br />
17
<input type="radio" name="browser" onclick="check(this.value)" value="Netscape">Netscape<br />
18
<input type="radio" name="browser" onclick="check(this.value)" value="Opera">Opera<br />
19
<br />
20
您喜欢的浏览器是:<input type="text" id="answer" size="20">
21
</form>
22
23
</body>
24
</html>
25