jQuery:基于 tabindex 循环表单?
因此,我有一个数组,我想填充一个表单,但我想根据指定的 tabindex 循环遍历表单元素,而不一定基于它们出现的顺序。
jQuery 会本机执行此操作吗?或者有什么方法可以指定此行为?
FWIW,我计划在输入上使用 .each() 。
So, I have an array, and I want to populate a form, but I want to loop through the form elements based on the specified tabindex, not necessarily based on the order in which they appear.
Will jQuery do this natively, or is there a way I can specify this behaviour?
FWIW, I plan on using an .each() on the input's.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以循环遍历数组并根据
tabindex
属性选择表单元素:(如有必要,偏移 idx 变量)
或者,如果您想选择一举:
You can loop through your array and select the form elements based on their
tabindex
attributes:(Offset the idx variable if necessary)
Alternatively, if you want to select the input elements in one swoop: