Posted on 2007-12-18 10:31
ゴ ウンホウ 阅读(566)
评论(0) 编辑 收藏
不動的なブラウザ
<script language = "javascript">
function abc(){
window.open("b.html");
return true;
}
function abcd(){
var nvua = navigator.userAgent;
if(nvua.indexOf('MSIE') >= 0){
if(nvua.indexOf('MSIE 5.0') == -1) {
top.opener = '';
top.close();
}
}
else if(nvua.indexOf('Gecko') >= 0){
top.name = 'CLOSE_WINDOW';
wid = window.open('','CLOSE_WINDOW');
top.close();
}else{
window.opener = window;
var win = window.open( location.href, "_self" );
win.close();
}
}
</script>