function onResize(){ ... } var timer; $(window).bind('resize',function(){ timer && clearTimeout(timer); timer = setTimeout(onResize,100); });
这将在用户停止调整大小100ms后触发。