屏幕分辨率:
screen.height
screen.width窗口的TOP,LEFT,RIGHT,BOTTOM
document.body.getBoundingClientRect().top
document.body.getBoundingClientRect().left
document.body.getBoundingClientRect().right
document.body.getBoundingClientRect().bottom

解决方案 »

  1.   

    不知道那个是不是你要的!再给你一个SCREEN对象相关的属性说明,MSDN上的
    screen.availHeight
    Retrieves the height of the working area of the system's screen,excluding the Microsoft? Windows? taskbar.  
    screen.availWidth 
    Retrieves the width of the working area of the system's screen, excluding the Windows taskbar.  
    screen.height
    Retrieves the vertical resolution of the screen. 
    screen.width
    Retrieves the horizontal resolution of the screen. 
      

  2.   

    <body><SCRIPT LANGUAGE="JavaScript">
    var  s = "";
    s += "\r\n网页可见区域宽:"+ document.body.clientWidth;
    s += "\r\n网页可见区域高:"+ document.body.clientHeight;
    s += "\r\n网页可见区域宽:"+ document.body.offsetWidth  +" (包括边线的宽)";
    s += "\r\n网页可见区域高:"+ document.body.offsetHeight +" (包括边线的宽)";
    s += "\r\n网页正文全文宽:"+ document.body.scrollWidth;
    s += "\r\n网页正文全文高:"+ document.body.scrollHeight;
    s += "\r\n网页被卷去的高:"+ document.body.scrollTop;
    s += "\r\n网页被卷去的左:"+ document.body.scrollLeft;
    s += "\r\n网页正文部分上:"+ window.screenTop;
    s += "\r\n网页正文部分左:"+ window.screenLeft;
    s += "\r\n屏幕分辨率的高:"+ window.screen.height;
    s += "\r\n屏幕分辨率的宽:"+ window.screen.width;
    s += "\r\n屏幕可用工作区高度:"+ window.screen.availHeight;
    s += "\r\n屏幕可用工作区宽度:"+ window.screen.availWidth;
    alert(s);
    </SCRIPT>
      

  3.   

    window.dialog.height你把body的margin设为0