欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM tabIndex 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 51次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM tabIndex 属性

元素对象


定义和用法

tabIndex 属性可设置或返回单选按钮的 tab 键控制次序。

语法

HTMLElementObject.tabIndex=tabIndex


浏览器支持

所有主要浏览器都支持 tabIndex 属性


实例

实例

改变三个链接的 tab 排序:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<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="https://www.runoob.com">1</a></p>
<p><a id="2" href="https://www.runoob.com">2</a></p>
<p><a id="3" href="https://www.runoob.com">3</a></p>

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

</body>
</html>


元素对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2307.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900