0

在网页上,如果有输入字段,按 Tab 键会切换它们,但是按特定顺序,有没有办法更改此顺序并将其设置为不同的顺序?

如果这可以在 html 中完成,那就更好了,但如果其他一些脚本语言(javascript 等)可以做到,那也是可以接受的。

4

1 回答 1

5

该属性tabindex负责http://www.w3.org/TR/WCAG-TECHS/H4.html 从 tabindex 中完全排除一个元素,给它一个-1 最低安全索引的索引,以 is 开头1

0是默认值,因此在显式设置时应避免tabindex

<input tabindex=1 type="text" name="my_input1">
<input tabindex=3 type="text" name="my_input2">
<input tabindex=2 type="text" name="my_input3">

在此示例中,选项卡将从my_input1to 到my_input3tomy_input2字段

tabindex 可用于a, area, button, input, object,selecttextarea

于 2011-09-17T15:36:25.690 回答