重定向到另一个页面时是否可以抑制“离开此页面”警报?
我正在使用 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但它们似乎给出了相同的警报框。