jQuery - Twitter Bootstrap - 下拉菜单始终可见

发布于 2025-01-07 12:46:48 字数 232 浏览 1 评论 0原文

我正在使用 Twitter Bootstrap 下拉菜单 并尝试更改这部分的行为:当我单击带有下拉菜单的链接时,我将获得子菜单。当我点击显示的子菜单时,子菜单将被隐藏。

当我单击该子菜单时,我希望子菜单也可见。 怎么做呢?

提前致谢!

I am playing with Twitter Bootstrap dropdowns menu and trying to change behavior of this part: when I click on the link with Dropdowns menu, I'll get the submenu. When I click into the displayed submenu, so the submenu will be hide.

I would like to have the submenu visible also that time, when I click into this submenu.
How to do that?

Thanks in advance!

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

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

发布评论

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

评论(1

悲念泪 2025-01-14 12:46:48

尝试做这样的事情。

$('.dropdown-menu a').click(function(){

   $('.dropdown-menu a').css({'display' : 'block' });

});

或者查看该插件,看看单击子菜单链接时哪个功能隐藏了菜单,然后使用您自己的脚本点击该功能。

Try doing something like this.

$('.dropdown-menu a').click(function(){

   $('.dropdown-menu a').css({'display' : 'block' });

});

Or take a look at the plugin and see which function is hiding the menu when clicking the submenu link, and then tap into that using your own script.

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