Scrolling issues with multiple bootstrap modals

后端 未结 6 2144
夕颜
夕颜 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:16

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

提交回复
热议问题