gpt4 book ai didi

jquery - TypeError : $. debounce 不是一个函数

转载 作者:行者123 更新时间:2023-12-03 22:50:51 26 4
gpt4 key购买 nike

我正在使用此代码:

function resizeJquerySteps() {
$('.wizard .content').animate({
height: $('.body.current').outerHeight()
}, 'slow');
}

$(window).resize($.debounce(250, resizeJquerySteps));

并收到此错误TypeError: $.debounce is not a function是否有另一种方法可以无错误地编写此内容?

最佳答案

该函数在某些库中定义像这样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!');
} ) );

关于jquery - TypeError : $. debounce 不是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37730628/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com