使用javascript处理刷新页面事件

时间:2010-10-16 17:42:02

标签: javascript javascript-events

是否可以使用javascript来处理刷新页面的事件? 如果用户执行以下行为之一,我想要的是注意:

  • 按F5
  • 刷新页面
  • 关闭标签页或浏览器
  • 输入新网址,然后按Enter键 浏览器

显示警告信息?
提前谢谢!

2 个答案:

答案 0 :(得分:25)

你不想刷新,你想要onbeforeunload事件。

http://msdn.microsoft.com/en-us/library/ms536907(VS.85).aspx

文章

中的示例代码
<HTML>
<head>
<script>
function closeIt()
{
  return "Any string value here forces a dialog box to \n" + 
         "appear before closing the window.";
}
window.onbeforeunload = closeIt;
</script>
</head>
<body>
  <a href="http://www.microsoft.com">Click here to navigate to 
      www.microsoft.com</a>
</body>
</html>

答案 1 :(得分:4)

最接近的是window.onbeforeunload事件:

window.onbeforeunload = function (e) {
    var e = e || window.event;

    // For IE and Firefox
    if (e) {
        e.returnValue = 'Leaving the page';
    }

    // For Safari
    return 'Leaving the page';
};

请务必注意,您需要从此函数返回一个字符串。