如果页面向下滚动 200px,则需要触发事件(jQuery)
我想显示和隐藏一段代码,如果我滚动并且页面是例如一半,我尝试使用窗口滚动,但这不起作用(没有错误,干净的代码,不同的浏览器,不同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 window.onload 函数(这就是他们在 jQuery 示例中使用它的方式):
Try using the window.onload function (that's how they use it in jQuery examples):