1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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();
} |
1
2
3
4
5
6
|
if($.browser.msie){ window.open('','_top');
window.top.close();
}else{ window.close();
}
|
本文转自 爱笑嘚蛋蛋 51CTO博客,原文链接:http://blog.51cto.com/dd118/1868515,如需转载请自行联系原作者