1. 程式人生 > >bootstrap 模態框model點選模態框外部不消失模態框的效果

bootstrap 模態框model點選模態框外部不消失模態框的效果

由於客戶使用是,填寫模態框內容時,不小心點選了外部,有需要重新填寫,因此需要限制點選外部不消失模態框,只能通過點選模態框的確定按鈕或者右上角叉號,消失模態框。

只要在定義模態框時,新增上

data-backdrop="static"
屬性即可。
如:
<div class="modal fade modal-aside horizontal right addOrUpdatePrivilege in" tabindex="-1" role="dialog"
aria-labelledby="myLargeModalLabel" aria-hidden="true" id="PrivilegeWindow" 
data-backdrop="static">
//模態框的內容....
</div>