2

问题是在加载网站时,.mCSB_container 类的宽度还可以,但是当我点击一个链接时,例如“项目”链接,它会触发一个 ajax 函数,即使内容不是那样,.mCSB_container 的宽度也不会改变很多。单击链接时不会加载网页。我尝试使用“更新”功能,但似乎它不起作用。

4

1 回答 1

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>
于 2013-06-07T21:43:25.347 回答