beforeunload - 自己的消息和功能成功与否?
以下代码始终显示相同的消息:此页面要求您确认等。是否可以更改此文本以显示其他内容?
$(window).bind('beforeunload', function(){
});
是否可以查询用户是真的离开页面还是留下来?
$(window).bind('beforeunload', function(){
if(return == 'stay on page'){
alert('stay');
}
if(return == 'leave page'){
alert('stay');
}
});
这可能吗?
是否可以在不发出警报的情况下检测关闭的窗口?
The following code always show the same message: This page is asking you to confirm etc. Is it possible to change this text to show something else?
$(window).bind('beforeunload', function(){
});
Is it possible to query whether the user actually leaves the page or if she stays?
$(window).bind('beforeunload', function(){
if(return == 'stay on page'){
alert('stay');
}
if(return == 'leave page'){
alert('stay');
}
});
Is this possible?
And is possible detect close windows without alert?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法修改 onbeforeunload 的默认对话,所以类似...
You can't modify the default dialogue for onbeforeunload, so something like ...