我需要在用户离开页面之前警告用户未保存的更改(一个非常常见的问题)。
window.onbeforeunload = handler
这有效,但它会引发一个默认对话框,其中包含一条包含我自己的文本的恼人的标准消息。我需要完全替换标准消息,以便我的文本清晰,或者(甚至更好)使用 jQuery 用模态对话框替换整个对话框。
到目前为止,我失败了,我还没有找到其他人似乎有答案。甚至有可能吗?
我的页面中的 Javascript:
<script type="text/javascript">
window.onbeforeunload = closeIt;
</script>
closeIt() 函数:
function closeIt()
{
if (changes == "true" || files == "true")
{
return "Here you can append a custom message to the default dialog.";
}
}
使用 jQuery 和 jqModal 我已经尝试过这种事情(使用自定义确认对话框):
$(window).beforeunload(function () {
confirm('new message: ' + this.href + ' !', this.href);
return false;
});
这也不起作用 - 我似乎无法绑定到该beforeunload
事件。