引入资源
dialog的div
使用
BootstrapDialog.alert({ type: BootstrapDialog.TYPE_DANGER, message: data });
也可以不定义div,自己在使用时个性化
function dangerDialog(msg) { BootstrapDialog.show({ type: BootstrapDialog.TYPE_DANGER, message: msg, buttons: [{ label: '确定', cssClass: 'btn-primary', action: function (dialogItself) { dialogItself.close(); } }] }); }