ホームページ  >  記事  >  ウェブフロントエンド  >  jquery_jqueryに基づいてブラウザウィンドウのサイズを取得するコード

jquery_jqueryに基づいてブラウザウィンドウのサイズを取得するコード

WBOY
WBOYオリジナル
2016-05-16 18:09:031132ブラウズ
复制代幣代码如下:

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);
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。