Javascript如何使弹出的窗口在屏幕的中央

80酷酷网    80kuku.com

  javascript

怎么用Javascript来打开一个窗口?简直是侮辱我们Web程序员的智慧!

可是,今天用户提出了新的需求,他要弹出的那个窗口要在整个屏幕的中央!

于是,Google一下,找一篇很多人转载过的文章如下:

<SCRIPT LANGUAGE="JavaScript">
var  s = "";
s += " 网页可见区域宽:"+ document.body.clientWidth;
s += " 网页可见区域高:"+ document.body.clientHeight;
s += " 网页可见区域宽:"+ document.body.offsetWidth  +" (包括边线和滚动条的宽)";
s += " 网页可见区域高:"+ document.body.offsetHeight +" (包括边线的宽)";
s += " 网页正文全文宽:"+ document.body.scrollWidth;
s += " 网页正文全文高:"+ document.body.scrollHeight;
s += " 网页被卷去的高:"+ document.body.scrollTop;
s += " 网页被卷去的左:"+ document.body.scrollLeft;
s += " 网页正文部分上:"+ window.screenTop;
s += " 网页正文部分左:"+ window.screenLeft;
s += " 屏幕分辨率的高:"+ window.screen.height;
s += " 屏幕分辨率的宽:"+ window.screen.width;
s += " 屏幕可用工作区高度:"+ window.screen.availHeight;
s += " 屏幕可用工作区宽度:"+ window.screen.availWidth;
s += " 你的屏幕设置是 "+ window.screen.colorDepth +" 位彩色";
s += " 你的屏幕设置 "+ window.screen.deviceXDPI +" 像素/英寸";
alert(s);
</SCRIPT>
结出此文章,不难写出在屏幕中间打开窗口的代码:

    function openBrWindowInCentre(theURL,width,height) {
      var left, top;
      left = (window.screen.availWidth - width) / 2;
      top = (window.screen.availHeight - height) / 2;
      var per = 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',screenX=' + left + ',screenY=' + top;
      window.open(theURL,'',per);
    }
在代码中,由于弹出的窗口都不太大,没有处理弹出窗口比屏幕大的情况,建议大家根据自己的实际情况加以修改。

 



分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: