$(window).scroll(function() {
clearTimeout($.data(this, 'scrollTimer'));
$.data(this, 'scrollTimer', setTimeout(function() {
// do something
console.log("Haven't scrolled in 250ms!");
}, 250));
});
更新
我编写了一个扩展来增强 jQuery 的默认on
-event-handler。它将一个或多个事件的事件处理函数附加到所选元素,如果在给定的时间间隔内未触发事件,则调用处理函数。如果您只想在延迟后触发回调,例如调整大小事件等,这将很有用。
检查 github-repo 的更新很重要!
https://github.com/yckart/jquery.unevent.js
;(function ($) {
var on = $.fn.on, timer;
$.fn.on = function () {
var args = Array.apply(null, arguments);
var last = args[args.length - 1];
if (isNaN(last) || (last === 1 && args.pop())) return on.apply(this, args);
var delay = args.pop();
var fn = args.pop();
args.push(function () {
var self = this, params = arguments;
clearTimeout(timer);
timer = setTimeout(function () {
fn.apply(self, params);
}, delay);
});
return on.apply(this, args);
};
}(this.jQuery || this.Zepto));
像任何其他on
或bind
-event 处理程序一样使用它,除了您可以将额外的参数作为最后一个传递:
$(window).on('scroll', function(e) {
console.log(e.type + '-event was 250ms not triggered');
}, 250);
http://yckart.github.com/jquery.unevent.js/
(这个演示使用resize
而不是scroll
,但谁在乎?!)