基于jquery的获取浏览器窗口大小的代码
代码如下: 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”? docume
用户评论