bootstrap css - how to make a modal dialog modal without affecting the background

前端 未结 7 832
时光说笑
时光说笑 2021-02-01 14:44

In bootstrap css, it is possible to display a modal dialog, but I want to be able to make it modal so the UI behind doesn\'t respond, without having the dark black background sh

7条回答
  •  孤独总比滥情好
    2021-02-01 14:59

    To get rid of the backdrop:

    After modal initiation

    $('#XXX').modal({show:true});

    just trigger the code below

     $('.modal-backdrop').removeClass("modal-backdrop");    
    

提交回复
热议问题