JQ取浏览器窗口大小
时间:2011-03-28 来源:鸡翅膀
今天正好用到这个,就网上搜了搜,贴出来了。如果对你有帮助,不胜荣幸。
  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);
 相关阅读 更多 + 
    
  









