在警报中设置“确定”按钮以运行location.reload方法

时间:2015-12-11 22:32:25

标签: javascript jquery html5 dom

我如何调用OK按钮,在警告消息框按钮中运行location.reload()?我的页面上有另一个按钮,我不想在下面运行此功能,只调用此方法的警报按钮的最佳方法是什么?

$('button')location.reload(true)

1 个答案:

答案 0 :(得分:0)

有效的方法是通过调用confirm()来执行重新加载。

var _confirm = confirm("confirmation message");

if (_confirm) {
window.location.reload();
}