我有一个高度:100px 和溢出的 div:自动内容是动态的。
我想滚动底部的 div
我试过了
$("#chat_content").scrollTop($("#chat_content").height());
但如果内容大于 100px $("#chat_content").height() 返回 100 并且 div 不会在底部滚动
我能怎么做?
谢谢
scrollHeight
从底层 DOM 元素获取属性:
$("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);
尝试$("#chat_content").scrollTop($("#chat_content").get(0).scrollHeight);
另一种方法是将内部内容包装在 div 中,然后将“.height”调用更改为
$("#chat_content").scrollTop($("#chat_content div").height());