13

我无法捕捉 bootbox.confirm 对话框的显示事件,以便在显示之前对对话框进行一些 CSS 调整。

我尝试了以下方法但没有成功:

$(document).on("show.bs.modal", function (event) {...});
$(document).on("show", function (event) {...});
$(document).on("show", ".bootbox", function (event) {...});
4

3 回答 3

42

这应该适用于您使用 Bootbox 4.xx 和 Bootstrap 3.xx:

var box = bootbox.dialog({
  message: '',
  title: '',
  buttons: {},
  show: false
});

box.on("shown.bs.modal", function() {
  alert('it worked!');
});

box.modal('show');

或像这样:

$(document).on("shown.bs.modal", function (event) {...});
于 2014-04-23T07:23:18.280 回答
3

我也更喜欢使用全局函数,如:

function bootbox_confirm(msg, callback_success, callback_cancel) {
    var d = bootbox.confirm({message:msg, show:false, callback:function(result) {
        if (result)
            callback_success();
        else if(typeof(callback_cancel) == 'function')
            callback_cancel();
    }});

    d.on("show.bs.modal", function() {
        //css afjustment for confirm dialogs
        alert("before show");
    });
    return d;
}

并这样称呼它:

bootbox_confirm("my message", function(){alert('ok')}, function(){alert('cancel')}).modal('show');

或者当没有取消逻辑时:

bootbox_confirm("my message", function(){alert('ok')}).modal('show');
于 2014-04-23T15:34:30.113 回答
2

你可以这样做:

var dialog = bootbox.dialog("foo", [], {show: false});

dialog.on("shown", function() {
 //
});

dialog.modal("show");
于 2014-04-21T13:32:19.380 回答