Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: IE8 中的 pageYOffset 滚动和动画
在我之前的问题中:
容器内的固定 div
答案和解决方案是:
http://jsfiddle.net/BbAck/3
经过进一步测试后,我遇到的问题是它在 IE8 中不起作用。
我在这里缺少什么,我应该在哪里解决它?
尝试改变:
yOffset = window.pageYOffset;
经过:
yOffset = $(window).scrollTop();
并确保您的页面具有 html5 文档类型:
<!DOCTYPE html>
http://jsfiddle.net/BbAck/4/