标签: jquery scroll
我知道获取或设置滚动偏移的最多跨浏览器方式是:$(window).scrollTop()作为getter,$('html,body').scrollTop(offset)作为setter。
$(window).scrollTop()
$('html,body').scrollTop(offset)
但是我对处理滚动事件的最佳做法感到困惑?
$(window).scroll(fn)或$("html,body").scroll(fn)?
$(window).scroll(fn)
$("html,body").scroll(fn)
答案 0 :(得分:-1)
我宁愿使用.bind
$(window).bind('mousewheel', function(e){ });