js关闭窗口兼容firefox、chrome、ie

来源:岁月联盟 编辑:exp 时间:2012-04-21

function windowclose() {
    var browserName = navigator.appName;
    if (browserName=="Netscape") {
        window.open('', '_self', '');
        window.close();
    }
    else {
        if (browserName == "Microsoft Internet Explorer"){
            window.opener = "whocares";
            window.opener = null;
            window.open('', '_top');
            window.close();
        }
    }
}
 
 
code in my life.

 

摘自 ghypnus