作者:HoerenRegen | 来源:互联网 | 2023-10-11 20:46
有人用过这个滚动条插件没:mCustomScrollbar;
在我进行异步加载的过程中,回调函数中的滚动条update无效:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| $.ajax({
type: "post",
url: urlStr,
dataType: 'html',
success: function(data) {
$(".main_body_con").html(data);
console.log(1);
},
error: function (XMLHttpRequest, textStatus, errorThrown)
{
alert('访问网络失败!' + errorThrown+urlStr);
},
complete: function(){
console.log($(".main_body_con").html());
console.log(2);
$(".main_body_con").mCustomScrollbar("update");
}
}); |
官方文档里面说使用ajax的回调函数,调用mCustomScrollbar("update"),可以重新加载滚动条,可是我添加了无效。求高手解答。