ホームページ  >  記事  >  ウェブフロントエンド  >  JS各種Webページサイズ判定例メソッド_JavaScriptスキル

JS各種Webページサイズ判定例メソッド_JavaScriptスキル

WBOY
WBOYオリジナル
2016-05-16 17:36:24924ブラウズ
复制代幣代码如下:

function learnBottom() {
varscrollTop = 0;
var clientHeight = 0;
varscrollHeight = 0;
if (document.documentElement && document.documentElement.scrollTop) {
scrollTop = document.documentElement.scrollTop;
} else if (document.documentElement && document.documentElement.scrollTop) body) {
scrollTop = document.body.scrollTop;
}
if (document.body.clientHeight && document.documentElement.clientHeight) {
clientHeight = (document.body.clientHeight < document .documentElement.clientHeight) ? document.body.clientHeight: document.documentElement.clientHeight;
} else {
clientHeight = (document.body.clientHeight > document.documentElement.clientHeight) ? document.body.clientHeight: document.documentElement.clientHeight;
}
scrollHeight = Math.max(document.body.scrollHeight, document.documentElement.scrollHeight);
if (scrollTop clientHeight ==scrollHeight) {
return true;
} else {
return false;
}
}
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。