如何更改网页上输入字段的切换顺序(使用Tab键切换输入字段)?
在网页上,如果有输入字段,按 Tab 键可切换它们,但按特定顺序,有没有办法更改此顺序并将其设置为其他顺序?
如果这可以在 html 中完成,那就更好了,但如果其他脚本语言(javascript 等)可以做到这一点,也是可以接受的。
On a web page, if there are input fields, pressing Tab key switches them, but in a particular order, is there a way to change this order and set it to some different order?
If this can be done in html, it is preferable, but if some other scripting language (javascript etc) can do it, it is also acceptable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
属性
tabindex
负责处理 http://www .w3.org/TR/WCAG-TECHS/H4.html要从 tabindex 中完全排除某个元素,请为其指定索引
-1
起始的最低安全索引是
1
。0
是默认值,因此在显式设置tabindex
时应避免该值。选项卡将从
my_input1
转到my_input3
> 到此示例中的my_input2
字段tabindex 可用于
a
、area
、button
、input
、对象
、选择
和textarea
The attribute
tabindex
takes care of that http://www.w3.org/TR/WCAG-TECHS/H4.htmlto exclude a element completely from the tabindex give it a index of
-1
the lowest safe index to start with is
1
.0
is the default value so should be avoided when explicitly setting thetabindex
The tab would go from the
my_input1
tomy_input3
tomy_input2
field in this exampletabindex may be used on
a
,area
,button
,input
,object
,select
andtextarea