我刚刚安装了完美的滚动,jQuery 插件,它工作得很好,但我找不到在我的 div 底部启动内容的参数。我想在页面加载时向上滚动,而不是向下滚动。
通常使用 jQuery 我会这样做:
$(nav_message_list).prop({ scrollTop: $(nav_message_list).prop("scrollHeight")});
但这似乎没有任何效果。
当前代码:
$(".chat_person").click(function ()
{
if (!$(".chat_content_wrap").is(":visible"))
{
$(".chat_content_wrap").fadeIn(300, function ()
{
$('#message_list').perfectScrollbar('update');
$(nav_message_list).prop({ scrollTop: $(nav_message_list).prop("scrollHeight")});
});
}
});
$("#message_list").perfectScrollbar();