当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM tabIndex属性
The tabIndex property sets or returns the tab order for a checkbox.
tabindex属性设置或返回checkbox的tab顺序
The tab order is the order the elements appear if you navigate the page using the "tab" button on the keyboard.
如果你的导航页使用了键盘"tab"按钮,那么tab order可以排列元素的出现顺序
checkboxObject.tabIndex=number |
The following example changes the tab index of the checkboxes:
下面的举例将改变checkbox的tab索引:
<html> <form> <input type="button" onclick="changeTabIndex()" </body> |
Change the tab order of checkboxes
改变checkbox的tab顺序