我需要在用户离开页面之前警告用户未保存的更改(一个很常见的问题)。
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
事件。