IE页面关闭前弹出窗口 是否保存信息

简介: function getEvent() //同时兼容ie和ff的写法, 这个方法是网上copy的 { if (document.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    
    <script type="text/javascript">
        function getEvent() //同时兼容ie和ff的写法, 这个方法是网上copy的 
        {
            if (document.all) return window.event;
            func = getEvent.caller;
            while (func != null) {
                var arg0 = func.arguments[0];
                if (arg0) {
                    if ((arg0.constructor == Event || arg0.constructor == MouseEvent) || (typeof (arg0) == "object" && arg0.preventDefault && arg0.stopPropagation)) {
                        return arg0;
                    }
                }
                func = func.caller;
            }
            return null;
        }
        function ConfirmClose() {
            if (window.event) {
                var IsClose = window.confirm("当前编辑的文章内容是否保存?");
                if (!IsClose) {
                    window.onbeforeunload = null;
                } else {
                    window.onbeforeunload = null;
                    window.returnValue = { "Content": Ext.getCmp("Content").getValue() };
                    window.close();
                }
                
            }
            else
                getEvent().preventDefault();  //for firefox
        }
        function on_page_loaded()   //自己定义的body的onload事件 
        {
            try {
                if (!window.onbeforeunload)    //为了不覆盖原来的onbeforeunload方法,先判断
                    window.onbeforeunload = ConfirmClose;   //todo 增加了窗口关闭前的提示
            } catch (e) { 
            }
        }
    </script>
</head>
<body onload="on_page_loaded();">
    <div id="EditForm">
    </div>
</body>
</html>

目录
相关文章
|
5月前
|
Web App开发 XML 开发框架
技术心得记录:在IE浏览器中的奇怪页面表现
技术心得记录:在IE浏览器中的奇怪页面表现
54 0
|
2月前
|
Windows
一打开IE就弹广告窗口和工作联系的消息框……搞定
一打开IE就弹广告窗口和工作联系的消息框……搞定
|
移动开发 前端开发 HTML5
web页面实现全背景视频功能方案:使用bideo.js来处理object-fit在ie浏览器下不兼容问题
web页面实现全背景视频功能方案:使用bideo.js来处理object-fit在ie浏览器下不兼容问题
233 0
web页面实现全背景视频功能方案:使用bideo.js来处理object-fit在ie浏览器下不兼容问题
|
JavaScript
单独的html页面做兼容IE
单独的html页面做兼容IE
|
安全
Selenium在Win10下IE浏览器遇到的白屏初始页面解决方案
开发环境:Win10+Python3.5+Selenium+IE11硬件环境:联想MIIX700语言环境:English(US)在做数据爬取得时候,发现IE Driver出现白屏,跟着提示:“This is the initial start page for the WebDriver server“几经寻找,解决了问题。
2017 0
获取浏览器窗口高度和宽度兼容IE
获取浏览器窗口高度和宽度兼容IE
117 0
|
Web App开发 JavaScript 前端开发
下一篇
无影云桌面