關閉當前窗口(兼容IE6以上,Google,FireFox)

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();
}
if($.browser.msie){
    window.open('','_top');  
    window.top.close(); 
}else{
    window.close();
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章