当我试图刷新页面,导航到另一个页面,关闭页面时,我想用一个确认对话框警告用户。
就像Gmail一样;例如,当您编写某些内容然后尝试关闭页面而不发送消息时,将出现一个警告对话框,其中包含两个选项: 离开此页/留在此页
答案 0 :(得分:4)
使用onbeforeunload。来自https://developer.mozilla.org/en/DOM/window.onbeforeunload:
window.onbeforeunload = function (e) {
e = e || window.event;
// For IE and Firefox prior to version 4
if (e) {
e.returnValue = 'Your text';
}
// For others
return 'Your text';
};