案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<form>
5
Male: <input id="male" accesskey="m" type="radio" name="Sex" value="Male" />
6
<br />
7
Female: <input id="female" accesskey="f" type="radio" name="Sex" value="Female" />
8
</form>
9
10
<p>The access key for the radio buttons are:
11
<script type="text/javascript">
12
document.write(document.getElementById('male').accessKey);
13
document.write(" and ");
14
document.write(document.getElementById('female').accessKey);
15
</script></p>
16
17
</body>
18
</html>
19