我剛剛安裝了完美滾動,jQuery插件,它工作的很好,但我找不到參數來啓動我的div底部的內容。我想要在頁面加載時向上滾動,而不必向下滾動。jQuery完美滾動 - 將滾動條設置到容器底部
通常使用jQuery,我只想做:
,但似乎沒有任何效果。
當前代碼:
$(".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();
表現出一定的HTML或你可以設置小提琴 –
看到http://stackoverflow.com/questions/19418087/jquery-perfect-scroll-set-scrollbar-to-the-bottom-of-the-container/19418474#19418474這..我也使用這個只... – KarSho