在bootbox.alert()打开时停止执行JS

时间:2014-10-02 12:27:32

标签: javascript alert bootbox

我有这样的代码:

alert('Error!');
window.location.reload();

首先显示警报,此警报页面关闭后将重新加载;

我想使用bootboxjs进行引导程序,并更改我的代码:

bootbox.alert('Error!');
window.location.reload();

但它不会等待用户关闭警报并在警报显示后立即重新加载页面。 如何解决这个问题?

1 个答案:

答案 0 :(得分:3)

您需要使用回调:

bootbox.alert('Error!', function() {
    window.location.reload();
});

查看官方documentation