标签: javascript
如何知道用户何时在屏幕上滚动?
答案 0 :(得分:7)
您可以订阅window.onscroll活动。例如:
window.onscroll = function() { // the user scrolled the window };