我想在用户离开页面之前做出确认。如果他说好,那么它将重定向到新页面或取消离开。我尝试使用onunload来实现它。
我试过beforeunload,它工作正常。 但是我无法在beforeunload中输入确认/警告。
$(window).on("beforeunload", function() {
if (flag_change_index == true) {
var msg = 'You are about to leave the page. Continue?';
return msg; //Webkit
}
});
Is it possible to display a custom message in the beforeunload popup?
所以,我需要1个解决方案而不是beforeunload。如果有人用jQuery演示如何做到这一点会更好吗? 谢谢。