强制关闭页面

强制关闭页面并打开一个空白页

function CloseWebPage(){
  if (navigator.userAgent.indexOf("Firefox") !== -1 || navigator.userAgent.indexOf("Chrome") !==-1) {
    window.location.href="about:blank";
    window.close();
  } else {
    window.opener = null;
    window.open("", "_self");
    window.close();
  }
}
posted @ 2022-03-18 14:33  前端销纸  阅读(107)  评论(0编辑  收藏  举报