是否可以在 10 秒后关闭 twitter bootbox?!我这样打开它:
bootbox.confirm("{{$steps[0]}}","accept","decline" ,function(result) {
if (result) {
}
});
是否可以在 10 秒后关闭 twitter bootbox?!我这样打开它:
bootbox.confirm("{{$steps[0]}}","accept","decline" ,function(result) {
if (result) {
}
});
此代码将在 10 秒后自动关闭打开的引导箱。
window.setTimeout(function(){
bootbox.hideAll();
}, 10000); // 10 seconds expressed in milliseconds
请参阅此处的文档
我刚刚提交了一个补丁,可以将此功能添加到 bootbox。
它可以在下面的链接中找到。
https://github.com/bhagyas/bootbox/commit/72cd1ada43d3aa74f0dcfb10d66219fe208063af
将此补丁添加到 bootbox.js 后,您可以在 bootbox 选项中设置额外的 timeOut 选项。
bootbox.dialog({
message : "Your operation completed successfully.",
timeOut : 2000
});
干杯。