如果页面向下滚动 200px,则需要触发事件(jQuery)

发布于 2024-11-09 00:58:47 字数 231 浏览 0 评论 0原文

我想显示和隐藏一段代码,如果我滚动并且页面是例如一半,我尝试使用窗口滚动,但这不起作用(没有错误,干净的代码,不同的浏览器,不同的 jQuery 版本),但是这个不会触发任何东西,所以我正在寻找一种更好的方法来显示和隐藏 div(如果我向下滚动)。

用它来触发事件(不起作用)

$(window).scroll(function(){
    alert('works')
});

I want to show and hide a piece of code if i scroll and the page is for example half way, i have tried to use window scroll but this doesnt works(no errors, clean code, different browsers, different jQuery versions), but this doesn't trigger anything, so i am looking for a better way to show and hide a div if i scrolldown.

used this to trigger an event(not working)

$(window).scroll(function(){
    alert('works')
});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦回旧景 2024-11-16 00:58:47

尝试使用 window.onload 函数(这就是他们在 jQuery 示例中使用它的方式):

window.onload = (function(){
  $(window).scroll(function () { 
    if( $(window).scrollTop() > 200 ) {
      // Display something
    }
  })
})

Try using the window.onload function (that's how they use it in jQuery examples):

window.onload = (function(){
  $(window).scroll(function () { 
    if( $(window).scrollTop() > 200 ) {
      // Display something
    }
  })
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文