If I scroll down 5px in this window, the window's scrollTop
value is 5. If I scroll right 10px in a scrollable div, the div's scrollLeft
value is 10.
When I scroll to the top left corner of this window, both its scrollTop
and scrollLeft
values are 0.
还有一个人作了补充: scrollTop and scrollHeight. In summary, scrollTop is how much it's currently scrolled, and scrollHeight is the total height, including content scrolled out of view.
总的来说,scrollTop就是卷起来的部分,也就是我们随着下拉,看不见的部分。scrollHeight就是整个窗口可以滑动的高度。