标签:js设置滚动条到div底部
/** * 设置聊天框中的滚动条始终在底部 */ function setScrollForBottom(id){ var height = document.getElementById(id).scrollHeight; $("#"+id).scrollTop(height); }
js设置滚动条到div底部
原文地址:http://cbg23.blog.51cto.com/7201812/1748647