检测浏览器滚动

时间:2011-04-29 18:14:36

标签: javascript

如何知道用户何时在屏幕上滚动?

1 个答案:

答案 0 :(得分:7)

您可以订阅window.onscroll活动。例如:

window.onscroll = function() {
    // the user scrolled the window
};