HTML DOM tabIndex 属性

定义和用法

tabIndex 属性设置或返回密码域的 tab 键控制次序。

语法

  1. passwordObject.tabIndex=number

实例

下面的例子可显示表单元素的 tab 键控制次序:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function showTabIndex()
  5. {
  6. var email=document.getElementById('email').tabIndex;
  7. var pwd=document.getElementById('pwd').tabIndex;
  8. document.write("Tab index of email field: " + email);
  9. document.write("<br />");
  10. document.write("Tab index of password field: " + pwd);
  11. }
  12. </script>
  13. </head>
  14. <body>
  15.  
  16. <form>
  17. Email: <input type="text" id="email" tabindex="1" />
  18. <br />
  19. Password: <input type="password" id="pwd" tabindex="2" />
  20. <br />
  21. <input type="button" onclick="showTabIndex()" value="Show tabIndex" />
  22. </form>
  23.  
  24. </body>
  25. </html>