在最近的项目中,需要做到一个时间,就是用户离开页面的时候,我需要缓存页面其中一部分的内容,但是我不需要用户刷新的时候也缓存,我只希望在我用户离开的时候
执行这个函数。百度之,有onbeforeunload与onunload这两个事件,但是onbeforeunload在用户刷新的时候也会执行。搞得我弄的挺久的,所以想在这里做一个小小的总结
onbeforeunload与onunload事件
onbeforeunload定义和用法
onbeforeunload 事件在即将离开当前页面(刷新或关闭)时触发。
该事件可用于弹出对话框,提示用户是继续浏览页面还是离开当前页面。
对话框默认的提示信息根据不同的浏览器有所不同,标准的信息类似 "确定要离开此页吗?"。该信息不能删除。
但你可以自定义一些消息提示与标准信息一起显示在对话框。
注意:
注意:
使用方法:
1、
<!DOCTYPE html>
<html lang= "en" >
<head>
<meta charset= "UTF-8" >
<title>test</title>
</head>
<body onbeforeunload= "return test()" >
</body>
<script type= "text/javascript" >
function test(){
return "你确定要离开吗" ;
}
</script>
</html>
或者:
<!DOCTYPE html>
<html lang= "en" >
<head>
<meta charset= "UTF-8" >
<title>test</title>
</head>
<body>
</body>
<script type= "text/javascript" >
window.onbeforeunload= function (){
return "你确定要离开吗" ;
}
</script>
</html>
事件触发的时候弹出一个有确定和取消的对话框,确定则离开页面,取消则继续待在本页。当然你可以自定义提示文本。
那么,当我只需要在我离开时执行这个函数,而刷新的时候不执行,那怎么做呢?
window.onbeforeunload = function () {
var n = window.event.screenX - window.screenLeft;
var b = n > document.documentElement.scrollWidth - 20;
if (!(b && window.event.clientY < 0 || window.event.altKey)) {
//window.event.returnValue = "真的要刷新页面么?";
//这里放置我想执行缓存的代码
cacheFunction();
}
}
这样,我离开页面时,可以执行我的缓存代码,而不弹出提示框,我刷新时也不弹出提示框,也不执行。值得一提的时,这个时候,要将ajax设置为同步,即:ajax里面的 async改为: false;
浏览器兼容情况
IE、Chrome、Safari
Firefox
Opera
IE6,IE7 使用 onbeforeunload 遇到的bug
onunload定义和用法
onunload 事件在用户退出页面时发生。
使用方法和onbeforeunload类似
window.onunload = function (){
return "你确定要离开吗"
}
浏览器兼容情况
IE6,IE7,IE8
IE9
firefox(包括firefox3.6)
Safari
Opera、Chrome