当我点击按钮时,我试图找到打开引导程序移动导航栏的方法。
$("#myCustomBtn").click(function(){
// Magic code goes here!
});
无所谓我需要使用jQuery。
答案 0 :(得分:2)
响应式导航栏使用collapse plugin,您可以使用带有href
属性的链接,也可以使用导航栏中按钮的data-target
属性的按钮。 Here's an example
修改强>
如果您想通过jQuery进行操作,可以拨打collapse methods:.collapse('toggle')
,.collapse('show')
或.collapse('hide')
我更新了example。