我有一个shoutBox,我想保持滚动到底部与IM窗口相同.
我的HTML是
<div id="shoutContainer"> <table id="shoutBox"> <tbody> <!-- shouts here --> </tbody> </table> </div>
我的css
#shoutContainer { height: 100px; overflow-y: scroll; }
如果它不可能通过HTML和CSS.我们可以在原始javascript中实现这一点吗?因为我没有使用任何框架
解决方法
每当添加项目时,请执行以下操作:
document.getElementById('shoutContainer').scrollTop = 10000; // or some other big number
编辑