折叠 Bootstrap 3 个插件冲突 Wordpress

Collapse Bootstrap 3 Plugins Conflict Wordpress

与谁有关,

我需要一些帮助来弄清楚为什么 bootstrap 崩溃 link 工作正常但不正确。它是测试站点左侧世界地图下方的蓝色按钮(下图link)。单击按钮时,它应该隐藏下面的文本。但是当它被点击时,它会滚动到它 linked 到的元素,而不是折叠元素。

我意识到有很多 .js 脚本可能会覆盖 bootstrap 折叠功能。有什么我可以添加为片段以确保没有冲突吗?下面是测试站点的 link 和一个 link 来显示不正确的按钮。

Link here - collapse now fixed

Image link here

提前致谢:-]

anchorhtml 包括 href 而不是 data-target,这就是 scroll up 的原因。因此,将其从 href.

更改为 data-target

当前

<a class="btn btn-primary" href="#collapseExample" role="button" data-toggle="collapse" aria-expanded="false" aria-controls="collapseExample">
                       <!--^^^^Change this-->

更新

<a class="btn btn-primary" data-target="#collapseExample" role="button" data-toggle="collapse" aria-expanded="false" aria-controls="collapseExample">
                       <!--^^^^^^^^^^^To this-->

这样就可以了。