HTML DOM tabIndex 属性

定义和用法

tabIndex 属性可设置或返回 checkbox 的 tab 键控制次序。

语法

  1. checkboxObject.tabIndex=number

实例

下面的例子可更改 checkbox 的 tab index:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function changeTabIndex()
  5. {
  6. document.getElementById('check3').tabIndex="1"
  7. document.getElementById('check1').tabIndex="3"
  8. }
  9. </script>
  10. </head>
  11. <body>
  12.  
  13. <form>
  14. <input type="checkbox" id="check1" tabIndex="1" /><br />
  15. <input type="checkbox" id="check2" tabIndex="2" /><br />
  16. <input type="checkbox" id="check3" tabIndex="3" /><br />
  17.  
  18. <input type="button" onclick="changeTabIndex()" value="Change tabIndex" />
  19. </form>
  20.  
  21. </body>
  22. </html>