问题是在加载网站时,.mCSB_container类的宽度是可以的,但是当我点击一个链接,例如“projects”链接,它会触发一个ajax函数时,.mCSB_container的宽度即使内容也不会改变不是那么多。单击链接后将不会加载网页。我尝试使用“更新”功能,但似乎无法正常工作。
答案 0 :(得分:1)
好的,我使用这个插件,我有同样的问题,但检查一下:
<script type="text/javascript">
$(function() {
$("#content").mCustomScrollbar({
scrollButtons:{
enable:true
},
advanced:{
updateOnContentResize: true // <- the solution
}
});
// get ajax link
$('.Link').click(function(){
$.get(this.href, function(data) {
$("#content .mCSB_container").html(data); // fill .mCSB_container
$("#content").mCustomScrollbar("update");
$("#content").mCustomScrollbar(
"scrollTo"
,"top"
,{scrollInertia:200}
); // go to Top content
});
return false;
});
});
</script>