web-dev-qa-db-ja.com

jQuery Webページの高さ

Webページがブラウザウィンドウの2倍の高さであるとしましょう(したがって、スクロールバーがあります)。 jQueryでWebページの高さを取得するにはどうすればよいですか?

57
core
$(window).height();   // returns height of browser viewport

$(document).height(); // returns height of HTML document
137
rahul

ドキュメントのheight()を使用できます。

$(document).height();

16
theIV

これも機能します。

$('body').height();
0
Soyeb Ahmed