Bootstrap Modal Backdrop Remaining

前端 未结 24 2075
被撕碎了的回忆
被撕碎了的回忆 2020-12-23 08:55

I am showing a Bootstrap modal window for loading when performing AJAX calls. I broadcast a \"progress.init\" event when the loading modal should show and a \"progress.finis

24条回答
  •  半阙折子戏
    2020-12-23 09:50

    After inspecting the element, the div with the modal-backdrop class still remains after I hit the browser back button, so I simply remove it:

    $(window).on('popstate', function() {
        $(".modal-backdrop").remove();
    });
    

提交回复
热议问题