基于jquery的获取浏览器窗口大小的代码-jquery

时间:2016-04-09
代码如下:

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);
上一条:js+css使DIV始终居于屏幕中间 左下 左上 右上 右下的代码集合-ja 下一条:基于jquery的地址栏射击游戏代码-jquery

相关文章

最新文章