What is the best method/function to calculate scroll body height o开发者_如何学Gof window? Thank you
$(document).height();
That should do it (reference: http://api.jquery.com/height/)
This should give you what you are looking for:
document.body.scrollHeight
精彩评论