`
xiuying
  • 浏览: 536847 次
  • 性别: Icon_minigender_1
  • 来自: 福建
社区版块
存档分类
最新评论

根据分辨率让window.open的窗口居中

    博客分类:
  • web
阅读更多

var   popwin;
 if(screen.width=="640")  
   {  
   popwin =  window.open("s1.html","name","resizable=yes,scrollbars=no,menubar=no,toolbar=no,width=450,height=400");
   }  
   else   if(screen.width=="800")  
   {  
     popwin =  window.open("s1.html","name","resizable=yes,scrollbars=no,menubar=no,toolbar=no,width=450,height=400");
   }  
   else   if(screen.width=="1024")  
   {  
     popwin =  window.open("s1.html","name","resizable=yes,scrollbars=no,menubar=no,toolbar=no,width=450,height=400");
   }  

 //重新设置窗口大小
 popwin.resizeTo("550","500");
 //网页正文全文宽
 pw = popwin.document.documentElement.scrollWidth-4;
 //网页正文全文高
 ph =  popwin.document.documentElement.scrollHeight-4;
 //移动窗口到中心位置
 popwin.moveTo((screen.width-pw)/2,(screen.height-ph)/2);

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics