重定向到其他页面时是否可以取消“离开此页面”警告?
我正在使用jQuery通知弹出窗口Apprise v2,一旦我点击弹出框上的“确定”按钮,这就是我执行的代码:
if (window.location.protocol != "https:") {
//window.location.href ="https://" + location.hostname + '/thank-you';
window.location.replace("https://" + location.hostname + '/thank-you');
} else {
//window.location.href ='/thank-you';
window.location.replace("/thank-you");
}
如上所述,我尝试了 window.location.href 和 window.location.replace ,但它们提供了相同的警告框。
任何帮助都会很棒!
答案 0 :(得分:3)
等等,你的意思是:
window.onbeforeunload = null;