1. 程式人生 > >html 中 TabIndex 屬性 的含義

html 中 TabIndex 屬性 的含義

參考地址:

1、http://blog.163.com/huan12_8/blog/static/1305190902011274739628/

2、http://www.imwangfu.com/tabindex-1%E6%9C%89%E4%BD%95%E4%BD%9C%E7%94%A8%EF%BC%9F/

案例地址:
1、 https://github.com/yuhaizr/htmlexample/commit/491869609636474b928322a07abe1265af36a7d2

1、tabindex 屬性可以設定鍵盤中的TAB鍵在控制元件中的移動順序,及焦點的順序

2、 tabindex 屬性值範圍在1到32767之間

3、 預設的 tabindex 的值為 0 ,將排在所有指定tableIndex的控制元件之後

4、 如果把 tabindex 的屬性設定為負值,那麼這個控制元件 將會被排除在 TAB鍵的序列之外

5、 tabindex 設定任意值 esc 都會起作用

6、tabindex 屬性顯性的定義了一個頁面中foucusable(可定焦)元素的導航順序

<a href="http://webaim.org/" tabindex="1">tabindex1</a>
<form action="submit.htm" method="post">
<input type
=
"submit" id="submitform1" tabindex="-1" value="tabindex-1"> <input type="submit" id="submitform0" tabindex="0" value="tabindex0"> <label for="name">Name</label> <input type="text" id="name" tabindex="2"> <input type="submit" id="submitform" tabindex="3" value="tabindex3"> </form>

按Tab鍵的時候

a、執行tabindex=”1”

b、執行tabindex=”2” …

c、執行tabindex=”0”

d、tabindex=”-1” 不執行

7、tabIndex=’-1’ 的使用
模態對話方塊視窗開啟時焦點應該在對話方塊屛,使用者將開始閱讀上面的內容並且鍵盤將開始導航焦點放在的對話方塊。因為對話方塊(可以是div)是預設設定成不可定焦的,分陪tabindex=’-1’