案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function disable()
5
  {
6
  document.getElementById("gnome").disabled=true
7
  }
8
</script>
9
</head>
10
<body>
11
12
<form>
13
Human: <input id="human" type="radio" name="creature" value="Human" />
14
<br />
15
Animal: <input id="animal" type="radio" name="creature" value="Animal" />
16
<br />
17
Gnome: <input id="gnome" type="radio" name="creature" value="Gnome" />
18
<br /><br />
19
<input type="button" onclick="disable()" value="Disable choice" />
20
</form>
21
22
</body>
23
</html>
24