是否可以在滚动条上绑定?

时间:2013-07-10 15:00:36

标签: javascript jquery

我现在有代码,如下所示:

 $('body').bind('click', someFunction);

我想将它绑定到滚动条(尽管整个滚动条区域)。我还没有办法做到这一点呢?有一个简单的解决方案吗?

1 个答案:

答案 0 :(得分:1)

您可以在滚动上绑定。 There are no mouse events on the scrollbar

$(window).bind('scroll', someFunction);