我无法捕捉 bootbox.confirm 对话框的显示事件,以便在显示之前对对话框进行一些 CSS 调整。
我尝试了以下方法但没有成功:
$(document).on("show.bs.modal", function (event) {...});
$(document).on("show", function (event) {...});
$(document).on("show", ".bootbox", function (event) {...});
我无法捕捉 bootbox.confirm 对话框的显示事件,以便在显示之前对对话框进行一些 CSS 调整。
我尝试了以下方法但没有成功:
$(document).on("show.bs.modal", function (event) {...});
$(document).on("show", function (event) {...});
$(document).on("show", ".bootbox", function (event) {...});
这应该适用于您使用 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) {...});
我也更喜欢使用全局函数,如:
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');
你可以这样做:
var dialog = bootbox.dialog("foo", [], {show: false});
dialog.on("shown", function() {
//
});
dialog.modal("show");