欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js关闭页面(兼容浏览器)

程序员文章站 2022-06-13 10:02:50
...
    function closewindow() {
        window.opener = null;
        window.open("", "_self");
        window.top.close();
        if (navigator.userAgent.indexOf("Firefox") > 0) {
            window.location.href = 'about:blank';
        }
    }