2014-03-28 24 views
0

晚上好,我有一个mCustomScrollbar的问题,这是我的代码,但它不会工作,我做错了什么? 预先感谢您。mCustomScrollbar SCROL BOTTOM

function createChat(){ 
    $("#chatview").load("chat/refresh.php",function(){ 
     $(this).mCustomScrollbar("scrollTo", "bottom"); 
    }); 
} 

$(window).load(function(){ 
    setInterval("createChat()",9000); 
    createChat(); 
}); 

回答

1

我会尝试的插件安装到聊天视图元素:

//cache variable 
var $chatView = $("#chatview"); 

function createChat(){ 
    $chatView.load("chat/refresh.php",function(){ 
     $chatView.mCustomScrollbar("scrollTo", "bottom"); 
    }); 
} 

$(window).load(function(){ 
    setInterval("createChat()",9000); 
    createChat(); 
}); 
+0

感谢你为这个解决方案,但它仍然没有工作:)不能明白为什么:) – Priya