`
天梯梦
  • 浏览: 13629469 次
  • 性别: Icon_minigender_2
  • 来自: 洛杉矶
社区版块
存档分类
最新评论

禁止点击背景而关闭bootstrap弹出框 Disable click outside of bootstrap model area to close mod

 
阅读更多

On Options chapter, in the page you linked, you can see the backdrop option. Passing this option with value 'static' will prevent closing the modal.
As @PedroVagner pointed on comments, you also can pass {keyboard: false} to prevent closing the modal by pressing Esc.

 

If you opening the modal by js use:

$('#myModal').modal({backdrop: 'static', keyboard: false})

 

If you are using data attributes, use:

<button data-target="#myModal" data-toggle="modal" data-backdrop="static" data-keyboard="false">
   Launch demo modal
</button>`

 

原文:http://stackoverflow.com/a/22208662/602382

转自:Disable click outside of bootstrap model area to close modal

 

 

 

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics