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();
                  }

相关文章:

  • 2021-11-20
  • 2021-12-23
  • 2022-03-01
  • 2022-02-27
  • 2022-12-23
  • 2021-11-19
  • 2021-12-09
  • 2022-12-23
猜你喜欢
  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2021-07-05
  • 2021-08-26
  • 2021-12-12
相关资源
相似解决方案