HTML DOM tabIndex 属性
JavaScript基础 2022-06-08 16:42:54小码哥的IT人生shichen
HTML DOM tabIndex 属性
定义和用法
tabIndex 属性设置或返回文本域的 tab 键控制次序。
语法
textObject.tabIndex=number
实例
下面的例子显示出不同文本域的 tab 键控制次序:
<html>
<head>
<script type="text/javascript">
function checkTab(x)
{
alert(x.tabIndex
)
}
</script>
</head>
<body>
<form id="myForm">
<input type="text" tabindex="1" onclick="checkTab(this)">
<input type="text" tabindex="2" onclick="checkTab(this)">
<input type="text" tabindex="3" onclick="checkTab(this)">
</form>
</body>
</html>
TIY
完整实例【显示出不同文本域的 tab 键控制次序】:
<html>
<head>
<script type="text/javascript">
function checkTab(x)
{
alert(x.tabIndex)
}
</script>
</head>
<body>
<form>
<input type="text" tabindex="1" onclick="checkTab(this)">
<input type="text" tabindex="2" onclick="checkTab(this)">
<input type="text" tabindex="3" onclick="checkTab(this)">
</form>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html