Posted in Javascript onMarch 28, 2011
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);
基于jquery的获取浏览器窗口大小的代码
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@