Close one div when the other opens - Bootstrap

后端 未结 2 991
借酒劲吻你
借酒劲吻你 2020-12-21 06:43

I\'m using the bootstrap native collapse functionality Bootstrap: collapse.js v3.0.2 to open div\'s when a button is pressed. It works great but I would like one div to clos

2条回答
  •  难免孤独
    2020-12-21 07:31


    As I know you can't achieve what you want with Bootstrap data attributes.

    So you can just add custom data attribute and add some custom javascript that will handle it:

    I used the following data-attribute: data-collapse-group and the following javascript:

    $("[data-collapse-group='myDivs']").click(function () {
        var $this = $(this);
        $("[data-collapse-group='myDivs']:not([data-target='" + $this.data("target") + "'])").each(function () {
            $($(this).data("target")).removeClass("in").addClass('collapse');
        });
    });
    

    Working example in jsFiddle based on your page.

提交回复
热议问题