5 回答
TA贡献83条经验 获得超67个赞
<body onunload="alert('欢迎您再来')" > <script> window.onbeforeunload=function (){ alert("===onbeforeunload==="); if(event.clientX>document.body.clientWidth && event.clientY < 0 || event.altKey){ alert("你关闭了浏览器"); }else{ alert("你正在刷新页面"); } } </script>
onload 事件和onunload事件 正好相反。这样就能看到效果了(ie浏览器 能看到效果)
TA贡献1条经验 获得超0个赞
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>onload 和 onunload 事件</title>
</head>
<body onload="load()" onunload="unload()" >
<script>
function load() {
alert('go')
}
function unload() {
alert('gggggg')
}
</script>
<p>弹窗-提示浏览器 cookie 是否可用。</p>
</body>
</html>
TA贡献56条经验 获得超22个赞
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>onload 和 onunload 事件</title>
</head>
<body onload="load()" onunload="unload()" >
<script>
function load() {
alert('go')
}
function unload() {
alert('gggggg')
}
</script>
<p>弹窗-提示浏览器 cookie 是否可用。</p>
</body>
</html>
添加回答
举报