• js捕捉浏览器关闭事件-兼容几乎所有浏览器


    很多时候我们都在困扰,如何捕获浏览器关闭事件,网上虽然有很多方法,但都不理想,后来终于找到了一个很好地实现方法,大家可以试试哦,支持几乎所有的浏览器

    <script type="text/javascript">
    var READYTOPROCESS = false; window.onbeforeunload = function closeWindow(e) { if (!READYTOPROCESS) { //message to be returned to the popup box. var message = '你确定要关闭吗?', e = e || window.event; if (e) e.returnValue = message; // IE return message; // Safari } }; </script>
  • 相关阅读:
    1001.A+B Format(20)
    大一下学期的自我目标
    re模块3
    re模块2
    re模块
    configParser模块
    logging模块
    hashlib模块
    sys模块
    isinstance函数
  • 原文地址:https://www.cnblogs.com/johnwood/p/3457427.html
Copyright © 2020-2023  润新知