Bootstrap Collapse with multiple button and div

后端 未结 2 1984
情深已故
情深已故 2021-01-27 23:56

I have seen this example of collapse in w3school

    


  

        
2条回答
  •  渐次进展
    2021-01-28 00:22

    You can use any accordion plugins to achieve this.

    If you want to go with a small piece of code, go with this:

    $('#btn1').click(function(){
      $('.collapse').hide();
      $('#demo').show();
    });
    $('#btn2').click(function(){
      $('.collapse').hide();
      $('#demo1').show();
    });
    
    
    1st div
    2nd div

提交回复
热议问题