我想捕捉 bootbox.confirm 对话框的显示事件,以便在显示之前对对话框进行一些 CSS 调整。
我尝试了以下方法但没有成功:
$(document).on("show", function (event) {...});
$(document).on("show", ".bootbox", function (event) {...});
$(document).on("show.bs.modal", function (event) {...});
我想捕捉 bootbox.confirm 对话框的显示事件,以便在显示之前对对话框进行一些 CSS 调整。
我尝试了以下方法但没有成功:
$(document).on("show", function (event) {...});
$(document).on("show", ".bootbox", function (event) {...});
$(document).on("show.bs.modal", function (event) {...});