gpt4 book ai didi

javascript - 在取消确认导航时执行代码

转载 作者:行者123 更新时间:2023-12-03 12:15:21 25 4
gpt4 key购买 nike

我使用一个简单的卸载前脚本来询问用户是否确定要离开页面。

window.onbeforeunload = function (e) {
var message = "Confirm message.",
e = e || window.event;
if (e){e.returnValue = message;}
return message;
};

如果他们点击取消(导航)或点击确认(导航),我是否可以运行一个函数

谢谢:)

最佳答案

您可以使用setTimeout函数进行破解:

window.onbeforeunload = function (e) {
var message = "Confirm message.",
e = e || window.event;

if (e) {
e.returnValue = message;
}

setTimeout(function () {
alert("oh, Im after beforeonload function!");
}, 1);

return message;
};

关于javascript - 在取消确认导航时执行代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24734104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com