2019-04-29 适应各浏览器的关闭页面js代码

        //关闭页面
        if (navigator.userAgent.indexOf("Firefox") != -1 || navigator.userAgent.indexOf("Chrome") !=-1) {
          window.location.href="http://localhost/fastflow/winform/cn/myprocessform.aspx";
          window.close();
        } else {
            window.opener = null;
            window.open("", "_self");
            window.close();
        }

你可能感兴趣的:(2019-04-29 适应各浏览器的关闭页面js代码)