Bootstrap: Open Another Modal in Modal

后端 未结 21 933
难免孤独
难免孤独 2020-11-27 11:28

So, I\'m using this code to open another modal window in a current opened modal window:



        
21条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-27 11:40

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

提交回复
热议问题