Jquery 选择框键盘导航

发布于 2024-11-16 05:46:04 字数 186 浏览 4 评论 0原文

我正忙于模板中的选择框,但无法解决它。

如果您转到此页面单击此处并查找选择框(位于表单部分) )并使用键盘导航,它会跳过一些选项,我不知道为什么?!

有人可以帮我解决这个问题吗?

I am busy with a selectbox in a template but i can't get it solved.

If you go to this page click here and look for the selectbox (it's in the forms section) and use the keyboard navigation it's skips some options and i don't know why?!

Can someone help me with this one?

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

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

发布评论

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

评论(1

祁梦 2024-11-23 05:46:04

问题似乎出在 sbCustomSelect 插件中。只要您在页面上启动一次它就可以正常工作(您可以将其应用于多个元素,它们只需要位于一个选择器下)。

像这样启动两次:

$('.row.heh select').sbCustomSelect();
$('.row.actionbox select').sbCustomSelect();

将使跳跃发生,如下所示:http://jsfiddle。 net/niklasvh/Qker9/7/

您可以通过将它们组合成一个选择器并仅初始化插件一次来获得相同的功能:

$('.row.heh select, .row.actionbox select').sbCustomSelect();

并且该插件工作正常:

http://jsfiddle.net/niklasvh/Qker9/8/

The problem seems to be in that sbCustomSelect plugin. It works fine as long as you initiate it once on the page (you can have it applied on multiple elements, they just need to be under one single selector).

Initiating it twice like this:

$('.row.heh select').sbCustomSelect();
$('.row.actionbox select').sbCustomSelect();

Will make the jumping occur, like can be seen here: http://jsfiddle.net/niklasvh/Qker9/7/

You can get the same functionality by combining them into one single selector and initializing the plugin only once:

$('.row.heh select, .row.actionbox select').sbCustomSelect();

And the plugin works fine:

http://jsfiddle.net/niklasvh/Qker9/8/

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