<script type="text/javascript">
$(document).ready(function()         
  {
    alert($("#divid").height()); //id为divid的区域高度
    alert($("#divid").width()); //id为divid的区域宽度
    alert($(window).height()); //浏览器当前窗口可视区域高度
    alert($(document).height()); //浏览器当前窗口文档的高度
    alert($(document.body).height());//浏览器当前窗口文档body的高度
    alert($(document.body).outerHeight(true));//浏览器当前窗口文档body的总高度 包括border padding margin
  }
)
</script>