HTML tabindex 属性
实例
带有指定 tab 键顺序的链接:
- <a href="http://www.baidu.com/"
tabindex="2"
>baidu</a>- <a href="http://www.google.com/"
tabindex="1"
>Google</a>- <a href="http://www.microsoft.com/"
tabindex="3"
>Microsoft</a>
浏览器支持
几乎所有浏览器均 tabindex 属性,除了 Safari。
定义和用法
tabindex 属性规定元素的 tab 键控制次序(当 tab 键用于导航时)。
提示和注释
注释:以下元素支持 tabindex 属性:<a>, <area>, <button>, <input>, <object>, <select> 以及 <textarea>。
语法
- <element
tabindex="number"
>
属性值
值 | 描述 |
---|---|
number | 规定元素的 tab 键控制次序(1 是第一个)。 |