案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<button accessKey="a" id="button1">Click me!</button>
5
6
<p>AccessKey for button is: 
7
<script type="text/javascript">
8
x=document.getElementById('button1');
9
document.write(x.accessKey);
10
</script></p>
11
12
</body>
13
</html>
14