Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: jquery:如何获取 div 全部内容的高度?
假设我有 600px 高的 div,它启用了滚动,并且我在其中有很多内容,所以它有滚动条。如何获得其中内容的高度?
它被称为scrollHeight。你需要给:
$(element).get(0).scrollHeight
例如,要知道总页面的滚动高度,您可以使用:
$("body").get(0).scrollHeight