Bootstrap 4 Collapse Accordion - always have one panel open

前端 未结 2 1899
长情又很酷
长情又很酷 2020-12-18 05:57

I\'m using Bootstrap 4.0\'s collapse component in an accordion similar to what they have on their docs.

2条回答
  •  被撕碎了的回忆
    2020-12-18 06:55

    You can try

    jQuery(function($){
        $('[data-toggle=collapse]').on('click', function (e) {
            e.preventDefault();
            if(! $(this).hasClass('collapsed')){
                e.stopPropagation();
                return false;
            }
        });
    });
    

提交回复
热议问题