HTML DOM tabIndex 属性

定义和用法

tabIndex 属性可为链接设置或返回 tab 键控制次序。

语法

anchorObject.tabIndex=tabIndex

实例

下面的例子可更改三个链接的 tab 键控制次序:

<html>
<head>
<script type="text/javascript">
function changeTabIndex()
  {
  document.getElementById('1').tabIndex="3"
  document.getElementById('2').tabIndex="2"
  document.getElementById('3').tabIndex="1"
  }
</script>
</head>

<body>
<p><a id="1" href="http://www.phpStudy.net">1</a></p>
<p><a id="2" href="http://www.phpStudy.net">2</a></p>
<p><a id="3" href="http://www.phpStudy.net">3</a></p>

<input type="button" onclick="changeTabIndex()"
value="Change TabIndex" />

</body>
</html>