案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function checkTab(x)
5
  {
6
  alert(x.tabIndex)
7
  }
8
</script>
9
</head>
10
<body>
11
12
<form>
13
<input type="text" tabindex="1" onclick="checkTab(this)">
14
<input type="text" tabindex="2" onclick="checkTab(this)">
15
<input type="text" tabindex="3" onclick="checkTab(this)">
16
</form>
17
18
</body>
19
</html>
20