Javascript 使用Jquery查找滚动条的总高度

Javascript 使用Jquery查找滚动条的总高度,javascript,jquery,Javascript,Jquery,我需要JavaScript jQuery代码来查找文档的总滚动高度。试试这个 $(document).ready(function(){ var documentHeight=$('html').height();//The entire page is within HTML tag so the page height would be the height of HTML's height. It would be the size of the entire scroll too. })

我需要JavaScript jQuery代码来查找文档的总滚动高度。

试试这个

$(document).ready(function(){
var documentHeight=$('html').height();//The entire page is within HTML tag so the page height would be the height of HTML's height. It would be the size of the entire scroll too.
});

你能告诉我们你想做什么,这样我们就可以添加一些相关的代码吗?