我想滚动底部的div
我试过
$("#chat_content").scrollTop($("#chat_content").height());
但如果内容大于100px$(“#chat_content”)。height()返回100,而div不会在底部滚动
我能怎么做?
谢谢
scrollHeight
$("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);