我正在尝试使用underscore.js的函数_.debounce()但我无法正确执行。
我正在尝试消除我的窗口滚动,如下所示,但我很困惑。
$(document).ready(function () {
$(window).scroll(function (event) {
var scrollCounter = $(this).scrollTop();
if ( scrollCounter > 0 ) { //do stuff }
else { //do stuff }
});
});