Javascript/JQuery 从 tabindex 中删除
在 HTML 表单上,我有 INPUT 文本框,后跟一个链接,然后是另一个 INPUT 文本框。我想从tabindex / tab顺序中删除链接:
<p>
<input type="text" name="field1" id="field1" value="" />
<a href="..a url.." id="link1">more info</a>
</p>
<p>
<input type="text" name="field2" id="field2" value="" />
</p>
tab顺序是field1,link1,field2,我希望它是field1,field2,而tabindex / order中根本没有link1。除了通过 tabindex 属性重新排序之外,还有什么方法可以从 Tab 键中完全删除 link1 吗?
On an HTML form I have INPUT text box followed by a link, then followed by another INPUT text box. I want to remove the link from the tabindex / tab order:
<p>
<input type="text" name="field1" id="field1" value="" />
<a href="..a url.." id="link1">more info</a>
</p>
<p>
<input type="text" name="field2" id="field2" value="" />
</p>
The tab order is field1, link1, field2 and I want it to be field1, field2 without link1 in the tabindex / order at all. Aside from reordering via the tabindex
attribute, is there any way to remove link1 from tabbing altogether?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 html 来实现此目的:
您也可以使用 jquery 来执行此操作:
You can achieve this with html:
You could also use jquery to do this: