如何检测用户何时使用浏览器滚动条在长 HTML 页面上导航?
如何检测用户何时使用浏览器滚动条在长 HTML 页面上导航?我想使用 JQuery 将函数附加到相应的事件(如果可能)。
PS: 我指的不是 JQuery 的 UI 滑块。
How to detect when user uses browser scrollbars to navigate on a long HTML page? I would like to attach a function to the corresponding event with JQuery (if possible).
P.S.: I am not referring to JQuery's UI-slider.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您要求用户何时滚动页面,则应使用 jQuery
scroll
事件:http://api.jquery.com/scroll/
如果您使用正确的术语,它将有助于找到这些内容:-)
If you're asking for when the user scrolls the page, you should use the jQuery
scroll
event:http://api.jquery.com/scroll/
It helps to find these things if you use the proper terminology :-)
document.scrollHeight
返回scroller的最大高度,通过设置document.scrollTo
的值可以移动scroller。document.scrollHeight
returns the max height of scroller, and by setting value ofdocument.scrollTo
can move scroller.