gpt4 book ai didi

jquery - Twitter Bootstrap 移动菜单 - 默认为未折叠状态

转载 作者:太空宇宙 更新时间:2023-11-03 18:35:03 25 4
gpt4 key购买 nike

我正在使用 Joomla Master Bootstrap 模板。它是围绕 Twitter bootsrap 构建的。

现在,当它处于移动 View 时,我想将移动菜单保持在打开状态。换句话说,移动下拉菜单 View 必须作为默认状态展开并在用户单击按钮时关闭。

有没有简单的方法可以做到这一点?

这是默认状态:

enter image description here

这是我想要的,默认情况下:

enter image description here

谢谢

JG

最佳答案

我找到了解决方案:

jQuery( document ).ready(function() {
jQuery('.nav-collapse').removeClass('collapse').addClass('in collapse').css("height","auto");
});

关于jquery - Twitter Bootstrap 移动菜单 - 默认为未折叠状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18954732/

25 4 0