gpt4 book ai didi

javascript - 尝试在使用 beforeunload 时阻止警报。 preventDefault 在 Chrome 中有效,但在 Firefox 中无效

转载 作者:行者123 更新时间:2023-11-30 19:06:31 26 4
gpt4 key购买 nike

以下代码在 Chrome 中有效,但在 Firefox 中无效。当我们将页面保留为

时,Firefox 会显示一个弹出窗口

This page is asking you to confirm that you want to leave - data you have entered may not be saved.

window.addEventListener("beforeunload", function (e) {
e.preventDefault();
});

最佳答案

正如 mozilla docs 中指出的那样:

According to the specification, to show the confirmation dialog an event handler should call preventDefault() on the event. However note that not all browsers support this method...

这是一个 good article关于何时应该使用 beforeunload 事件。检查一下,因为您可能不需要它。

这是一个 polifill声称支持...

newer ES5 compatible browsers. And it should be able to support most elderly browsers if you provide them with an ES5 shim.

关于javascript - 尝试在使用 beforeunload 时阻止警报。 preventDefault 在 Chrome 中有效,但在 Firefox 中无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58932754/

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