How to remove bootstrap modal overlay?

前端 未结 8 2008
挽巷
挽巷 2021-01-03 21:32

How to remove bootstrap modal overlay for particular modal. when modal appears background has black color with some opacity is there any option for removing that elements...

8条回答
  •  情话喂你
    2021-01-03 22:22

    $("#myModal").on('hide.bs.modal', function(){
        $('.modal-backdrop').remove()
    });
    

    This should work as a charm

提交回复
热议问题