页面关闭或返回触发JS事件,刷新不触发 您所在的位置:网站首页 jsp页面关闭页面触发 页面关闭或返回触发JS事件,刷新不触发

页面关闭或返回触发JS事件,刷新不触发

2024-07-11 04:22| 来源: 网络整理| 查看: 265

页面加载时只执行onload 页面关闭时只执行onunload 页面刷新时先执行onbeforeunload,然后onunload,最后onload。 经过验证我得出的结论是: ## 对于ie,谷歌,360: - 页面加载时只执行onload - 页面刷新时,刷新之前执行onbeforeunload事件,在新页面即将替换旧页面时onunload事件,最后onload事件。 - 页面关闭时,先onbeforeunload事件,再onunload事件。

## 对于火狐:

-页面刷新时,只执行onunload;页面关闭时,只执行onbeforeunload事件 那么回归正题,到底怎样判断浏览器是关闭还是刷新?我按照网上的各种说法实验千百遍,都未成功,其中各种说法如下:

window.onbeforeunload = function() //author: meizz { var n = window.event.screenX - window.screenLeft; var b = n > document.documentElement.scrollWidth-20; if(b && window.event.clientY < 0 || window.event.altKey) { alert("是关闭而非刷新"); window.event.returnValue = ""; //这里可以放置你想做的操作代码 }else { alert("是刷新而非关闭"); } } window.onbeforeunload = function() //author: meizz { var n = window.event.screenX - window.screenLeft; var b = n > document.documentElement.scrollWidth-20; if(b && window.event.clientY < 0 || window.event.altKey) { alert("是关闭而非刷新"); window.event.returnValue = ""; //这里可以放置你想做的操作代码 }else { alert("是刷新而非关闭"); } } function CloseOpen(event) { if(event.clientX0;鼠标在客户区外时,window.event.clientY document.body.clientHeight || event.altKey){ 关闭浏览器时你想做的事 }

 



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有