HTML DOM tabIndex 属性
JavaScript基础 2022-06-08 11:31:14小码哥的IT人生shichen
HTML DOM tabIndex 属性
定义和用法
tabIndex 属性设置或返回元素的 tab 键控制次序。
语法
HTMLElementObject.tabIndex=tabIndex
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有主流浏览器均支持 tabIndex 属性。
实例
改变三个链接的 tab 次序:
<html>
<head>
<script>
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.phpcodeweb.com">1</a></p>
<p><a id="2" href="http://www.phpcodeweb.com">2</a></p>
<p><a id="3" href="http://www.phpcodeweb.com">3</a></p>
<input type="button" onclick="changeTabIndex()"
value="Change TabIndex">
</body>
</html>
完整实例:
<!DOCTYPE html>
<html>
<head>
<script>
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.phpcodeweb.com">1</a></p>
<p><a id="2" href="http://www.phpcodeweb.com">2</a></p>
<p><a id="3" href="http://www.phpcodeweb.com">3</a></p>
<input type="button" onclick="changeTabIndex()"
value="更改 TabIndex">
<p>请在按下 “更改 TabIndex” 按钮前后事宜 tab 键在链接间导航。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html