Skip to content

关闭页面

JS 关闭非 JS 打开页面时会被浏览器阻止,下面方法可以解决这个问题。

js
function closePage() {
  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()
  }
}