gpt4 book ai didi

javascript - 未显示 Bootbox 对话框

转载 作者:行者123 更新时间:2023-11-29 22:09:03 24 4
gpt4 key购买 nike

我使用的是 Bootstrap 2.3.1 和 Bootbox 3.3.0 版。当我编写以下代码时:

bootbox.dialog({message:"test"});

出现空模态窗口。如果我使用 Bootstrap 盒的“警报”方法,一切正常。我在 Safari(6.0.3) 和 Firefox (24.0) 中对其进行了测试。

有人遇到过这个问题吗?

塔玛拉。

最佳答案

Bootbox 3.x 不接受对象参数。为此,您必须升级到 Bootstrap 3 和 Bootbox 4.x。

这是 Bootbox 3.x 对话框的示例:

var boxContentString = "html formatted text goes here";
bootbox.dialog(boxContentString,[
//buttons
{
"label" : "Button 1",
"class" : "btn-success",
"callback": function(e){
//do stuff
}
},
{
"label" : "Button 2",
"callback": function(e){
//do stuff
}
}
]);

这是 Bootbox 3 Documentation 的链接

关于javascript - 未显示 Bootbox 对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19089921/

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