码迷,mamicode.com
首页 > Web开发 > 详细

HTML DOM tabIndex 属性

时间:2020-07-05 12:04:40      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:tab   value   bind   htm   用法   body   zha   translate   XML   

[

HTML DOM tabIndex 属性
元素对象

定义和用法

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

语法

HTMLElementObject.tabIndex=tabIndex

浏览器支持

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

实例

实例

改变三个链接的 tab 排序:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Break易站(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>

元素对象

]
转载请保留页面地址:https://www.breakyizhan.com/html/22492.html

HTML DOM tabIndex 属性

标签:tab   value   bind   htm   用法   body   zha   translate   XML   

原文地址:https://www.cnblogs.com/breakyizhan/p/13241678.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!