本文介绍了在底部div上滚动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在自己聊天.在一个主窗口上,我有更多的聊天窗口(div).我想在加载主窗口时将聊天div滚动到底部.有什么解决办法吗?
I am working on my own chat. And on one main window I have more chat windows(divs). And I want when I load my main windows, that my chat divs was scrolled on bottom. Have you any solutions?
推荐答案
$('#div1').scrollTop($('#div1')[0].scrollHeight);
这是您的解决方案:D
this is your solution :D
这篇关于在底部div上滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!