$(document).scroll 仅在 IE8 中不会触发

发布于 2024-12-06 08:51:02 字数 265 浏览 0 评论 0原文

我有一个运行一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

把昨日还给我 2024-12-13 08:51:02

尝试使用窗口

  $(window).scroll(function () {
    //do something on scroll
  });

Try using window:

  $(window).scroll(function () {
    //do something on scroll
  });
趴在窗边数星星i 2024-12-13 08:51:02

对于很多区域,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文