如果用户尝试关闭窗口而不保存表单,则显示警告消息。
window.onbeforeunload = askConfirm;
function askConfirm()
{
// needToConfirm is set to true if any changes are there in the form
if (needToConfirm)
{
return "Your unsaved data will be lost.";
}
}
function call_this_if_user_clicks_on_cancel()
{
// Bla bla bla
// After this user should remain on the same page.
}
现在我想在用户点击Okay
时调用另一个函数。其余功能应该保持不变。
那么如何收集onbeforeunload
返回值并调用另一个函数呢?
解决方案:
needToConfirm = false;
window.onbeforeunload = askConfirm;
window.onunload = unloadPage;
isDelete = true;
function unloadPage()
{
if(isDelete)
{
call_this_if_user_clicks_on_cancel()
}
}
function askConfirm()
{
alert("onbeforeunload");
if (needToConfirm)
{
// Message to be displayed in Warning.
return "Your data will be lost.";
}
else
{
isDelete = false;
}
}
谢谢Alex。
答案 0 :(得分:9)
我不确定;但我认为你不能把另一个功能称为浏览器的预防措施,因此不会因为离开页面而陷入困境。
我认为只有浏览器知道它是否返回true / false以确定页面是否被卸载(<或p>)。
以前unbeforeunload是非标准的(来自IE4,但受其他浏览器支持) 以下是Mozilla文档https://developer.mozilla.org/en/DOM/window.onbeforeunload 微软文档:http://msdn.microsoft.com/en-us/library/ms536907(VS.85).aspx
然而,它看起来像在HTML5提案中的BeforeUnloadEvent。 本文档详细介绍了卸载文档时的步骤(有趣的阅读):
http://www.w3.org/TR/html5/history.html#beforeunloadevent
作为解决方法: 您可以从“卸载事件”中收集所需的信息,如果在onbeforeunload之后未调用unload事件,则可以假设用户选择留在您的页面上。