2014-03-28 45 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