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.
我在带有左右列的长 HTML 页面上有一个滑动屏幕。在知道用户使用滑动条的情况下,如何获取 HTML 页面中屏幕的高度位置?我需要它来滑动左右栏内容以跟随用户的移动。谢谢。
PS:我正在使用 JQuery(如果有帮助的话)。
您可以使用它scrollTop来查找任何 DOM 元素的垂直滚动位置。
scrollTop
$('#element').scrollTop()
其他一些有用的功能:scrollLeft(), offset(),position()
scrollLeft()
offset()
position()