我有一个内容高度超过窗口高度的页面。我需要在jQuery或纯Javascript的帮助下获得我的页面的全部高度。如何获得这个价值?
我想过
$('body height')+$('body').scrollTop();
但是只有当我将页面滚动到页面底部时,此解决方案才会返回完整高度。
答案 0 :(得分:1)
$(document).height()
(docs)应该做你想做的事。您还可以使用<body>
获取$('body').height()
标记的高度,该标记应该是页面的完整高度。
答案 1 :(得分:1)
您可以简单地使用:
$(document).height(); // Get's the height of the HTML Document
因为这个..
$(window).height(); // get's only the height of the Viewport...
问候