我有一个小问题。我有一个对 php 的 js ajax 调用。
PHP:
echo '<div class="center-right-inside"></div>';
在 ajax 之前我创建了 div
$('.main').fadeIn('slow').html('<div class="right-left"><div class="left-c"></div><div class="center-c"></div><div class="right-c"></div></div>');
在我的 JS 中,我使用插件http://manos.malihu.gr/jquery-custom-content-scroller/ 在创建 div 之后,我在女巫上加载了另一个 div 我想使用插件......但没有运气
complete :function(){
$('.center-c').fadeIn();
$('.center-right-inside').mCustomScrollbar("update");
}
我试过了:
$(".center-right-inside").mCustomScrollbar();
这在 DOM 上准备好了,它工作正常但是当 ajax 完成时没有......
在发布此问题之前,我阅读了该插件的文档并在 google 和 SO 上进行搜索,但如果有任何建议,请提前致谢。