在乐学一百的项目当中引用到了BootstrapDialog,其中后台发送短信时,为了防止管理员编辑了半天的短息,突然间因为点击某个空白区域导致丢失,所以在此禁用掉点击空白关闭弹出框。
主要属性为: closable: false,
1 BootstrapDialog.show({ 2 title: ‘一键群发‘, 3 message: html, 4 type: BootstrapDialog.TYPE_DEFAULT, 5 closable: false, 6 cssClass: ‘dialog_mar‘, 7 buttons: [{ 8 label: ‘发 送‘, 9 cssClass:‘con_btn‘, 10 action: function(dialogRef){ 11 dialogRef.close(); 12 } 13 }, { 14 label: ‘取消‘, 15 action: function(dialogRef){ 16 dialogRef.close(); 17 } 18 }] 19 })
时间: 2024-11-03 22:18:39