IE高
document.body.clientHeight页面高:
document.body.scrollHeight

解决方案 »

  1.   

    offsetWidth、offsetHeight    IE工作区宽和高
    clientWidth、clientHeight    IE可见区宽和高
    scrollWidth、scrollHeight    IE水平滚动板宽度和垂直滚动板高度
    screen.width、screen.height  屏幕的分辩率
      

  2.   


    说完了。clientHeight 实际可用的高度,scrollTop 滚动条的高度,
      

  3.   

    window.moveTo(0,0)window.screenTop就是IE栏的高度
    加上document.body.offsetHeight是窗口的高度document.body.offsetHeight是显示页面的高度
    加上document.body.scrollHeight是文档的高度