$(document).scroll 仅在 IE8 中不会触发
我有一个运行一些 JavaScript 的网站。仅在 IE8 中,当您使用或不使用鼠标滚轮滚动时, $(document).scroll 不会触发。 下面的代码片段:
$(document).scroll(function () {
//do something on scroll
});
这个函数在 IE8 中不会触发有什么具体原因吗?我在网上搜索过没有成功。
感谢您提前提供的所有建议和提示!!!!
I have a site running some javascript. In IE8 only, the $(document).scroll is not firing when you scroll with or without the mousewheel.
Code snippet below:
$(document).scroll(function () {
//do something on scroll
});
Is there a specific reason this function won't fire in IE8? I have searched online with no success.
Thanks for all advice and tips in advance!!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
窗口
:Try using
window
:对于很多区域,IE 将事件绑定到窗口而不是像其他浏览器那样绑定到文档。 $(window).scroll(function(e) {});这就是你在这里所追求的。通常也应该在大多数其他浏览器中工作,但如果不能,请使用导航器上的检查来查找 IE 并使用基于该布尔值的窗口或文档。
For a lot of areas, IE ties the event to window rather than document as other browsers will. $(window).scroll(function(e) {}); is what you're after here. Should generally also work in most other browsers too, but if not, use a check on the navigator to find IE and use window or document based on that Boolean.