我正在使用jquery CustomScrollbar插件。链接http://manos.malihu.gr/jquery-custom-content-scroller/
我正在通过 ajax 加载我的数据。代码如下
$(window).load(function(){
$(".top-heading-section3").mCustomScrollbar({
advanced:{
updateOnContentResize: true
}
}
);
});
当 ajax 完成时,我会这样做:
$(".top-heading-section3").mCustomScrollbar('update')
但是我仍然在所有 div 上获得 mCS_no_scrollbar 类,并且滚动条没有出现。
我哪里错了?