Scrolling issues with multiple bootstrap modals

后端 未结 6 2143
夕颜
夕颜 2020-12-29 02:54

I have a page with a modal with a lot of info so you need to scroll. This modal contains a link to a second modal.

When I

  • open modal 1
  • click o
6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-29 03:19

    The solution that worked for me was:

    $('.modal').on("hidden.bs.modal", function (e) { 
        if ($('.modal:visible').length) { 
            $('body').addClass('modal-open');
        }
    });
    

提交回复
热议问题