--- title: HTMLElement.tabIndex slug: Web/API/HTMLElement/tabIndex translation_of: Web/API/HTMLOrForeignElement/tabIndex ---
获取或设置当前元素的tab键激活顺序.
element.tabIndex = index index = element.tabIndex
index
是一个数字,表示顺序。取值需要在0到32767之间。Tab键的遍历顺序是这样的:
支持tabIndex属性的元素有:a,area,button,input,object,select和textarea。
tabIndex的值不需要是连续的,也不需要以某个特定值开始。
var b1 = document.getElementById("button1"); b1.tabIndex = 1;
了解更多,请查看: The solution: changes to standard behavior of tabindex
{{ languages( { "ja": "ja/DOM/element.tabIndex", "fr": "fr/DOM/element.tabIndex", "pl": "pl/DOM/element.tabIndex" , "en": "en/DOM/element.tabIndex" } ) }}