jquery 关闭本浏览页

    xiaoxiao2025-06-08  18

      function fclose() {     var userAgent = navigator.userAgent;     if (userAgent.indexOf("Firefox") != -1 || userAgent.indexOf("Chrome") != -1) {         location.href = "about:blank";     } else {         window.opener = null;         window.open('', '_self');     }     window.close(); }

    最新回复(0)