js关闭当前页面比较兼容的办法

来源:互联网 发布:e5 1620 超频软件 编辑:程序博客网 时间:2024/06/03 15:58
function CloseWebPage(){    if (navigator.userAgent.indexOf("MSIE") > 0) {        if (navigator.userAgent.indexOf("MSIE 6.0") > 0) {            window.opener = null;            window.close();        } else {            window.open('', '_top');            window.top.close();        }    }    else if (navigator.userAgent.indexOf("Firefox") > 0) {        window.location.href = 'about:blank ';    } else {        window.opener = null;        window.open('', '_self', '');        window.close();    }}
0 0
原创粉丝点击