我正在使用Bootstrap 2.3.1和Bootbox版本3.3.0。当我写下面的代码时:
bootbox.dialog({message:"test"});
出现空模态窗口。如果我使用bootbox的'alert'方法一切正常。我在Safari(6.0.3)和Firefox(24.0)中进行了测试。
有人遇到过这个问题吗?
塔玛拉。
答案 0 :(得分:2)
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
}
}
]);
的链接