在jquery alert中单击ok按钮后重新加载页面

时间:2017-03-30 10:52:30

标签: jquery alert pageload bootbox

以下链接是我遇到问题的一个例子。我点击确定按钮后我会重新加载页面。除非页面不应重新加载。我有谷歌这个。仍然没有结果。如何实现这一点。

Jsfiddle

 $(function () {
bootbox.alert({
    message: "I'm the first!"
});
location.reload(true);
});

1 个答案:

答案 0 :(得分:0)

$(function () {
    bootbox.alert({
    message: "I'm the first!",
    callback: function () { location.reload(true); }
});