Bootstrap 3 collapse accordion: collapse all works but then cannot expand all while maintaining data-parent

后端 未结 4 464
隐瞒了意图╮
隐瞒了意图╮ 2020-12-05 00:52

I\'m using Bootstrap 3 and trying to setup the following accordion/collapse structure:

  1. Onload: Each accordion panel in a group is fully collapsed and functi

4条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-05 01:48

    The best and tested solution is to put the following small snippet which will collapse the accordion tab which is already open when you load. In my case the last sixth tab was open so I made it collapsed on page load.

     $(document).ready(){
          $('#collapseSix').collapse("hide");
     }
    

提交回复
热议问题