以下链接是我遇到问题的一个例子。我点击确定按钮后我会重新加载页面。除非页面不应重新加载。我有谷歌这个。仍然没有结果。如何实现这一点。
$(function () {
bootbox.alert({
message: "I'm the first!"
});
location.reload(true);
});
答案 0 :(得分:0)
$(function () {
bootbox.alert({
message: "I'm the first!",
callback: function () { location.reload(true); }
});