如何从链接切换Bootstrap下拉菜单

如何从链接切换Bootstrap下拉菜单

本文介绍了如何从链接切换Bootstrap下拉菜单?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个Bootstrap下拉菜单工作正常。我想做的也是通过点击页面上其他位置的链接来触发菜单的打开。 (这是有道理的,因为菜单项中的内容等等)。文档页面表示链接可以像 $('。dropdown-toggle')。dropdown(),或者可能 $('。dropdown-toggle')。dropdown('toggle')应该这样做,但也不适用于我。任何建议?

解决方案

尝试

  $ addClass( 开放 )( 下拉菜单。); 

  $( 下拉菜单。 )removeClass( 打开)。 


I have a Bootstrap dropdown menu that is working fine. What I'd like to do is also trigger the opening of the menu by clicking on a link elsewhere on the page. (This makes sense because of what's in the menu item, etc.) The doc page says that having the link do something like $('.dropdown-toggle').dropdown(), or maybe $('.dropdown-toggle').dropdown('toggle') should do this, but neither is working for me. Any suggestions?

解决方案

try

$(".dropdown").addClass("open");

and

$(".dropdown").removeClass("open");

这篇关于如何从链接切换Bootstrap下拉菜单?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 05:49