Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

HTMLElement.tabIndex

概述

获取或设置当前元素的tab键激活顺序.

语法

element.tabIndex = index index = element.tabIndex

参数

  • index是一个数字,表示顺序。取值需要在0到32767之间。

Tab键的遍历顺序是这样的:

  1. 对于tabIndex值为正数的元素,如果多个元素的tabIndex值相同,则以他们出现在字符流中的次序来遍历;否则按tabIndex值由小到大的顺序来遍历。
  2. 对于不支持tabIndex属性或支持tabIndex属性并将其赋值为0的元素,按照他们出现在字符流中的次序来遍历。
  3. 处于不可用状态的元素不会被遍历到。

支持tabIndex属性的元素有:a,area,button,input,object,select和textarea

tabIndex的值不需要是连续的,也不需要以某个特定值开始。

例子

var b1 = document.getElementById("button1"); 
b1.tabIndex = 1;

规范

W3C DOM Level 2 HTML tabIndex

了解更多,请查看: The solution: changes to standard behavior of tabindex

文档标签和贡献者

 此页面的贡献者: teoli, Hasilt, sleepholic, ziyunfei
 最后编辑者: teoli,