Bootstrap multiple modals modal-backdrop issue

前端 未结 5 1996
伪装坚强ぢ
伪装坚强ぢ 2021-01-02 07:09

I have a page where one Bootstrap modal opens another modal.

The problem is that with each opened modal, it adds

5条回答
  •  无人及你
    2021-01-02 07:34

    Here is the working demo that I think will fit in your case.

    $(".modal").on("shown.bs.modal", function () {
        if ($(".modal-backdrop").length > 1) {
            $(".modal-backdrop").not(':first').remove();
        }
    })
    
      
      
    
     

提交回复
热议问题