我有一个mCustomScrollbar的问题,这是我的代码,但它不会工作。
function createChat(){
$("#chatview").load("chat/refresh.php",function(){
$(this).mCustomScrollbar("scrollTo", "bottom");
});
}
$(window).load(function(){
setInterval("createChat()",9000);
createChat();
});发布于 2014-03-29 01:32:19
我会尝试将插件附加到聊天视图元素:
//cache variable
var $chatView = $("#chatview");
function createChat(){
$chatView.load("chat/refresh.php",function(){
$chatView.mCustomScrollbar("scrollTo", "bottom");
});
}
$(window).load(function(){
setInterval("createChat()",9000);
createChat();
});https://stackoverflow.com/questions/22719406
复制相似问题