使用 TAB 防止循环浏览页面元素

发布于 2024-12-11 04:14:16 字数 84 浏览 0 评论 0原文

我有一个请求者 div ,它位于我的所有页面之上,我想在对话框打开时阻止使用 TAB 访问页面的其他元素。我怎样才能做到这一点?

I have a requester div which is over of all my page and I want to prevent access to other elements of page using TAB while the dialog is opened. How can I do that?

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

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

发布评论

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

评论(2

来日方长 2024-12-18 04:14:16

您可以将每个元素设置为禁用,或将其tabindex 为零。使用 jQuery 设置 $(selector).prop('disabled',true)$(selector).attr('tabindex',0)

You can either set each element to be disabled, or set their tabindex to zero. Use jQuery to set $(selector).prop('disabled',true) or $(selector).attr('tabindex',0).

仅一夜美梦 2024-12-18 04:14:16

jQuery UI 通过绑定到模式对话框的 keypress 事件来实现这一点。当按下 TAB 时,它仅手动处理模式对话框内元素之间的焦点切换。默认行为被抑制(返回 false),因此焦点不会切换到外部元素。

相关来源在这里: ui/jquery.ui .dialog.js

jQuery UI does that by binding to the keypress event for modal dialog boxes. When TAB is pressed, it manually handles the switching of focus between elements within the modal dialog only. The default behaviour is suppressed (return false) so focus is not switched to external elements.

Relevant source here: ui/jquery.ui.dialog.js

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