Bootstrap collapse - go to top of the open item?

前端 未结 6 1722
孤街浪徒
孤街浪徒 2021-02-01 07:48

I\'m using the bootstrap collapse function, but when I open an element which has a lot of content, then open the next element, it jumps down and doesn\'t go to the top of the op

6条回答
  •  终归单人心
    2021-02-01 08:21

    $('#accordion').on('shown.bs.collapse', function () {
    
      var panel = $(this).find('.in');
    
      $('html, body').animate({
            scrollTop: panel.offset().top
      }, 500);
    
    });
    

提交回复
热议问题