我有这个JQuery函数,它在JQuery中放置了一个自定义滚动条及其选项。 我对“回调”部分感兴趣,其中,在我的<总滚动事件中DIV>它调用 my_scrolls_clubber_threads 。我有4< DIV的>,每个都有不同的ID,在我的页面上,我想传递给函数my_scrolls_clubber_threads DIV的id。我想,从我的代码中可以用这个来完成。 $(本).attr( “ID”)。 但它给了我以下错误:
未捕获的TypeError:无法调用未定义的方法'call'
我哪里错了?
下面是配置自定义滚动条的代码(部分工作,滚动时不会移动滚动,导致代码被此错误破坏)。
函数我调用完美,但调用过程似乎没有。
$(document).ready(function(){
(function($){
$(window).load(function(){
$(".my_scrolls_clubber_threads").mCustomScrollbar({
scrollButtons:{
enable:true
},
theme:"light-thick",
scrollInertia : 0,
callbacks:{
onTotalScroll:function(){ var this_id = $(this).attr("id");
my_scrolls_clubber_threads(this_id); }
},
advanced:{
autoScrollOnFocus: false,
updateOnContentResize: true
}
});
});
})(jQuery);