我们使用window.location.href将用户导航到页面。 此外,我们已配置window.onbeforeunload事件,以便在有任何未保存的更改时提醒用户。
window.onbeforeunload = confirmBeforeClose;
function confirmBeforeClose() {
if (jwd.global.inEditMode)
return "Your changes will not be saved :) and you will be punished to death";
}
在有未保存更改的地方,我尝试使用window.location.href
导航用户,我会收到提示消息。
如果我在弹出窗口中单击“确定”,它可以正常工作。但是,如果我单击CANCEL,JS会在window.location.href中抛出一个未指定的错误。
感谢任何帮助。
答案 0 :(得分:11)
我也遇到过这个问题(在IE7及更高版本中,但不是在IE6中)。
我能找到的唯一解决方案是在try / catch块中包装window.location.href调用。
以下是重现问题的完整示例。如果您取消注释try / catch,那么它在所有浏览器中都可以正常工作。
JavaScript(在HTML头文件中):
window.onbeforeunload = confirmBeforeClose;
function confirmBeforeClose( )
{
return 'You have made changes on this page that will be lost if you navigate away without saving.';
}
function leavePage( )
{
// try {
window.location.href = "http://www.example.com";
// } catch( e ) { }
}
HTML:
<body> <a href="#" onclick="leavePage(); return false;">Leave this page</a> </body>