gpt4 book ai didi

跨浏览器的Javascript滚动事件

转载 作者:行者123 更新时间:2023-12-02 16:56:54 25 4
gpt4 key购买 nike

在我的项目中,我需要获取一些与页面上的滚动事件相关的参数,例如开始日期时间、停止日期时间、开始滚动时的 ycoords 和停止时的 ycoords。我只需要捕获滚动事件的开始和停止,但我知道在 JavaScript 中没有用于此目的的方法。有什么想法可以兼容所有主要浏览器吗?

提前致谢

最佳答案

http://jsfiddle.net/hYsRh/4/

    $(window).scroll($.debounce( 250, true, function(){
$('#scrollMsg').html('SCROLLING!');
}));
$(window).scroll($.debounce( 250, function(){
$('#scrollMsg').html('DONE!');
}));

jQuery debounce

关于跨浏览器的Javascript滚动事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26093359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com