今天正好用到这个,就网上搜了搜,贴出来了。如果对你有帮助,不胜荣幸。

function getTotalHeight(){
 if($.browser.msie){
  return document.compatMode == "CSS1Compat"? document.documentElement.clientHeight : document.body.clientHeight;
 }
 else {
  return self.innerHeight;
 }
}

function getTotalWidth (){
 if($.browser.msie){
  return document.compatMode == "CSS1Compat"? document.documentElement.clientWidth : document.body.clientWidth;
 }
 else{
  return self.innerWidth;
 }
}

var do_height = getTotalHeight();
var do_width = getTotalWidth();
alert("do_height=="+do_height+"\ndo_width=="+do_width);

posted on 2011-03-28 17:41  鸡翅膀  阅读(840)  评论(0编辑  收藏  举报