我正在使用此代码:
function resizeJquerySteps() {
$('.wizard .content').animate({
height: $('.body.current').outerHeight()
}, 'slow');
}
$(window).resize($.debounce(250, resizeJquerySteps));
接收此错误TypeError: $.debounce is not a function
还有另一种方法可以写错误吗?
答案 0 :(得分:1)
此功能在某些库中定义 像这样http://benalman.com/code/projects/jquery-throttle-debounce/jquery.ba-throttle-debounce.js
您需要将此库包含在项目中。 请参阅此处示例http://jsfiddle.net/hYsRh/4/
$(window).scroll($.debounce( 250, true, function(){
$('#scrollMsg').html('SCROLLING!');
} ) );