如何检查网页页面是否滚动?

时间:2010-06-19 07:51:48

标签: jquery internet-explorer scroll mouse-position

javascript中是否有任何方法可以检查网页是否已垂直滚动? 专门用于Internet Explorer?我需要在IE中获取鼠标位置但使用 jQuery事件e.pageY当页面没有滚动时它会给出正确的值,但是当页面向下滚动时它会给出错误的位置。

2 个答案:

答案 0 :(得分:42)

如果任何未来的googlers发现这一点,快速示例是:

if(!$(window).scrollTop()) { //abuse 0 == false :)
  alert("You are at the top of this window");
}

答案 1 :(得分:3)

如果您对使用jQuery感到满意,请查看此问题:

How do I determine height and scrolling position of window in jQuery?