13

是否可以在 10 秒后关闭 twitter bootbox?!我这样打开它:

bootbox.confirm("{{$steps[0]}}","accept","decline" ,function(result) {
    if (result) {

    }
}); 
4

2 回答 2

27

此代码将在 10 秒后自动关闭打开的引导箱。

window.setTimeout(function(){
    bootbox.hideAll();
}, 10000); // 10 seconds expressed in milliseconds

请参阅此处的文档

于 2013-07-20T12:30:24.650 回答
4

我刚刚提交了一个补丁,可以将此功能添加到 bootbox。

它可以在下面的链接中找到。

https://github.com/bhagyas/bootbox/commit/72cd1ada43d3aa74f0dcfb10d66219fe208063af

将此补丁添加到 bootbox.js 后,您可以在 bootbox 选项中设置额外的 timeOut 选项。

bootbox.dialog({
    message  : "Your operation completed successfully.",
    timeOut : 2000
});

干杯。

于 2014-06-30T14:47:51.083 回答