使用window.onbeforeunload
(或$(window).on("beforeonload")
) 时,是否可以在该弹出窗口中显示自定义消息?
也许是一个适用于主要浏览器的小技巧?
通过查看现有答案,我感觉过去可以使用confirm
oralert
或 or 之类的东西event.returnValue
,但现在似乎它们不再起作用了。
那么,如何在 beforeunload 弹出窗口中显示自定义消息?这甚至/仍然可能吗?
使用window.onbeforeunload
(或$(window).on("beforeonload")
) 时,是否可以在该弹出窗口中显示自定义消息?
也许是一个适用于主要浏览器的小技巧?
通过查看现有答案,我感觉过去可以使用confirm
oralert
或 or 之类的东西event.returnValue
,但现在似乎它们不再起作用了。
那么,如何在 beforeunload 弹出窗口中显示自定义消息?这甚至/仍然可能吗?
tl;dr - 在大多数现代浏览器中您不能再设置自定义消息
快速说明(因为这是一个旧答案) - 现在所有主要浏览器都不支持
beforeunload
弹出窗口中的自定义消息。没有新的方法可以做到这一点。如果您仍然需要支持旧浏览器 - 您可以在下面找到信息。
为了在用户关闭窗口之前设置确认消息,您可以使用
jQuery
$(window).bind("beforeunload",function(event) {
return "You have some unsaved changes";
});
Javascript
window.onbeforeunload = function() {
return "Leaving this page will reset the wizard";
};
它注意到你很重要不能把 confirm/alert
里面 beforeunload
还有一些注意事项:
- 并非所有浏览器都支持此功能(更多信息请参见MDN 上的浏览器兼容性部分) 2. 在 Firefox 中,您必须与页面进行一些真正的交互,以便向用户显示此消息。
3. 每个浏览器都可以在您的消息中添加自己的文本。
以下是使用我有权访问的浏览器的结果:
铬合金:
火狐:
苹果浏览器:
IE:
只是为了确保 - 您需要包含 jquery
有关浏览器支持和删除自定义消息的更多信息:
使用
window.onbeforeunload
(或$(window).on("beforeonload")
) 时,是否可以在该弹出窗口中显示自定义消息?
不再。所有主要浏览器都开始忽略实际消息而只显示自己的消息。
通过查看现有答案,我感觉过去可以使用
confirm
oralert
或 or 之类的东西event.returnValue
,但现在似乎它们不再起作用了。
正确的。一个很长的时间以前,你可以使用confirm
或alert
更近,你可以从一个返回一个字符串onbeforeunload
处理函数和字符串将被显示。现在,字符串的内容被忽略,它被视为一个标志。
使用 jQuery 时on
,您确实必须returnValue
在原始事件上使用:
$(window).on("beforeunload", function(e) {
// Your message won't get displayed by modern browsers; the browser's built-in
// one will be instead. But for older browsers, best to include an actual
// message instead of just "x" or similar.
return e.originalEvent.returnValue = "Your message here";
});
或老式的方式:
window.onbeforeunload = function() {
return "Your message here"; // Probably won't be shown, see note above
};
这就是你所能做的。
我刚刚做了一个 div 出现,在后台显示一条消息。它在模态后面,但这总比没有好。这有点阴暗,但至少你可以给你的用户一些关于你为什么打扰她/他不要离开的信息。
constructor($elem)
{
$(window).unbind().bind('beforeunload', (e) => this.beforeUnload(e));
}
beforeUnload(e)
{
$('#leaveWarning').show();
setTimeout(function(){
$('#leaveWarning').hide();
}, 1); // set this to 1ms .. since timers are stopped for this modal,
// the message will disappear right after the user clicked one of the options
return "This message is not relevant in most modern browsers.";
}
这是一个工作小提琴https://jsfiddle.net/sy3fda05/2/
自 2021 年起,出于安全原因,不再可能在beforeunload
弹出窗口中显示自定义消息,至少在主要浏览器(Chrome、Firefox、Safari、Edge、Opera)中是如此。
这不再可能,因为:
详情请见:
获得类似结果的另一种方法是捕获与链接相关的点击事件(这会使您离开当前页面)并在那里请求确认。可能会调整它以包含表单提交或通过脚本重定向(这将需要在触发重定向的元素中应用特定的类和信息)。
这是一个工作代码片段(基于 jQuery),它向您展示了如何做到这一点:
编辑:出于安全原因,SO 中的代码段不适用于所有浏览器(该代码段生成 iframe ......并且在某些浏览器中“在不同的原始域 iframe 中不允许使用 window.confirm”),但是代码确实有效,所以试一试吧!
$('body').on('click', function(e) {
var target, href;
//Identifying target object
target = $(e.target);
//If the target object is a link or is contained in a link we show the confirmation message
if (e.target.tagName === 'A' || target.parents('a').length > 0) {
//Default behavior is prevented (the link doesn't work)
e.preventDefault();
if (window.confirm("Are you really really sure you want to continue?")) {
//Identify link target
if (e.target.tagName === 'A') {
href = target.attr('href');
} else {
href = target.parents('a').first().attr('href');
}
//Redirect
window.location.href = href;
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<a href="https://stackoverflow.com">Click me and I'll take you home</a>
您无法在现代浏览器上设置自定义消息,而可以使用默认警报功能。