Webページがブラウザウィンドウの2倍の高さであるとしましょう(したがって、スクロールバーがあります)。 jQueryでWebページの高さを取得するにはどうすればよいですか?
$(window).height(); // returns height of browser viewport
$(document).height(); // returns height of HTML document
ドキュメントのheight()
を使用できます。
$(document).height();
これも機能します。
$('body').height();