BootstrapDialog使用

引入资源


    
    

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();
                }
            }]
        });
    }

docs

  • bootstrap-modal-plugin

你可能感兴趣的:(javascript)