tabindex
属性指定元素的 tab 键顺序(当“tab”键用于导航)
带有指定 tab 键顺序的链接:
<a href="hhttps://github.com/jaywcjlove/html-tutorial" tabindex="2">html-tutorial</a> <a href="http://www.google.com/" tabindex="1">Google</a> <a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>
tabindex
属性指定元素的 tab 键顺序(当“tab”按钮用于导航时)。
tabindex
属性可用于任何 HTML 元素(它将验证任何 HTML 元素。但是,它不一定有用)。
表中的数字指定了完全支持该属性的第一个浏览器版本。
<tabindex> | Yes | Yes | Yes | Yes | Yes |
<element tabindex="number">
值 Value | 描述 Description |
---|---|
number | 规定元素的 tab 键控制次序(1 是第一个)。 |