1. 程式人生 > >原生js關閉窗口

原生js關閉窗口

avi top null pre fir ie 6 about lose tor


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

原生js關閉窗口