How to remove bootstrap modal overlay?

前端 未结 8 1994
挽巷
挽巷 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:26

    If you using function click in javascript (jquery). You using :

    $("#myBtn2").click(function(){
        $("#myModal2").modal({backdrop: false});
    });
    
    0 讨论(0)
  • 2021-01-03 22:27

    Add data-backdrop="false" option as attribute to the button which opens the modal.

    <!-- Button trigger modal -->
    <button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal" data-backdrop="false">
      Launch demo modal
    </button>
    

    See modal options

    0 讨论(0)
提交回复
热议问题