`
冬天秋天
  • 浏览: 46858 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

JS调整弹出窗口大小

    博客分类:
  • js
js 
阅读更多
这段代码很实用,用JS重新调整弹出窗口大小
来源:http://hi.baidu.com/xsharkx/blog/item/029ab516ca08c154f2de321d.html



function winResize(){ 
   var ToH=525; 
   var ToW=700; 
if(window.navigator.appName=="Netscape"){ //firefox 
       window.innerHeight=ToH; 
       window.innerWidth=ToW; 
    }else{//ie 
       var cWinwidth=window.document.documentElement.clientWidth; 
       var cWinheight=window.document.documentElement.clientHeight; 
       window.resizeBy(ToW-cWinwidth,ToH-cWinheight);
       cWinwidth=window.document.documentElement.clientWidth; 
       cWinheight=window.document.documentElement.clientHeight; 
       window.resizeBy(ToW-cWinwidth,ToH-cWinheight); 
   } 
}
分享到:
评论
1 楼 ocean_llc 2011-10-09  

相关推荐

Global site tag (gtag.js) - Google Analytics