gpt4 book ai didi

jquery - 使用 bootbox 不会触发 show 事件

转载 作者:行者123 更新时间:2023-12-03 22:06:05 24 4
gpt4 key购买 nike

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

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

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

最佳答案

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

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) {...});

关于jquery - 使用 bootbox 不会触发 show 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23198453/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com