html 属性tabIndex
程序员文章站
2022-04-28 08:38:02
...
tabIndex 属性规定元素的 tab 键控制次序(当 tab 键用于导航时)
几乎所有浏览器均 tabindex 属性,除了 Safari。
<a href="http://www.w3school.com.cn/" tabindex="2">W3School</a>
<a href="http://www.google.com/" tabindex="1">Google</a>
<a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>
<a href="https://www.baidu.com/" tabindex="0">baidu</a>
<a href="http://www.e.com/" tabindex="-1">e</a>
以上代码执行顺序为tabindex=“1” tabindex=“2” tabindex=“3” tabindex=“0” tabindex="-1"