Tab 在 Mac Firefox 中跳过选择表单字段。我可以通过更改程序来阻止这种行为吗?

发布于 2024-10-20 07:06:27 字数 534 浏览 2 评论 0原文

Tab 会跳过 Mac Firefox 中的选择表单字段。

http://www.tonyspencer.com/2006/05/02/tab-skips-select-form-fields-in-mac-browsers/" tonyspencer.com/2006/05/02/tab-skips-select-form-fields-in-mac-browsers/

讨论了这个问题,并展示了如何通过更改系统首选项来阻止它。

然而,我正在运行一些在线心理实验,并希望避免要求用户更改他们的系统偏好设置。 所以我需要某种方法来停止代码中的跳过行为。

是否可以? 任何想法表示赞赏。

提前致谢。

=====编辑========

请注意,我无法在代码中使用 JQuery,但可以使用 JavaScript。

Tab skips select form fields in Mac Firefox.

http://www.tonyspencer.com/2006/05/02/tab-skips-select-form-fields-in-mac-browsers/

talks about the issue, and shows how to stop it by changing the system preference.

However, I am running some online psych experiment and would like to avoid asking users to change their system preference.
So I need some way to stop skipping-behavior in my code.

Is it possible?
Any ideas appreciated.

Thanks in advance.

=====edit========

Please note that I cannot use JQuery in my code, but I can use JavaScript.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还如梦归 2024-10-27 07:06:27

我自己解决了这个问题。
我所做的并不是很理想,但这就是我所做的。

  1. 为每个将获得焦点的元素分配 tabindex。
  2. 当按下回车键时(tab引起了另一个问题,所以我没有使用它),搜索tabindex = 1 + currentelement.tabindex的元素,并将其作为下一个元素。
  3. 将焦点设置到下一个元素。

谢谢。

I solved the issue by myself.
What I did was not very optimal, but here is what I did.

  1. assign tabindex for each element which will have focus.
  2. when enter key is pressed (tab caused another issue, so I didn't use it), search the element whose tabindex = 1 + currentelement.tabindex, and make it as next element.
  3. set focus to the next element.

Thanks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文