我的HTML是
<div id="shoutContainer"> <table id="shoutBox"> <tbody> <!-- shouts here --> </tbody> </table> </div>@H_403_5@ 我的css #shoutContainer { height: 100px; overflow-y: scroll; }@H_403_5@ 如果它不可能通过HTML和CSS.我们可以在原始javascript中实现这一点吗?因为我没有使用任何框架
我的css
#shoutContainer { height: 100px; overflow-y: scroll; }@H_403_5@ 如果它不可能通过HTML和CSS.我们可以在原始javascript中实现这一点吗?因为我没有使用任何框架
如果它不可能通过HTML和CSS.我们可以在原始javascript中实现这一点吗?因为我没有使用任何框架
document.getElementById('shoutContainer').scrollTop = 10000; // or some other big number@H_403_5@ 编辑
编辑