HTML DOM tabIndex 屬性
定義和用法
tabIndex 屬性可設(shè)置或返回單選按鈕的 tab 鍵控制次序。
語法
HTMLElementObject.tabIndex=tabIndex
瀏覽器支持
所有主要瀏覽器都支持 tabIndex 屬性
實例
實例
改變?nèi)齻€鏈接的 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.o2fo.com">1</a></p>
<p><a id="2" href="http://www.o2fo.com">2</a></p>
<p><a id="3" href="http://www.o2fo.com">3</a></p>
<input type="button" onclick="changeTabIndex()"
value="Change TabIndex">
</body>
</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.o2fo.com">1</a></p>
<p><a id="2" href="http://www.o2fo.com">2</a></p>
<p><a id="3" href="http://www.o2fo.com">3</a></p>
<input type="button" onclick="changeTabIndex()"
value="Change TabIndex">
</body>
</html>
嘗試一下 ?
更多建議: