【发布时间】:2015-08-04 06:54:08
【问题描述】:
每次我添加一个项目,当它变大时,就会出现一个滚动条。但是滚动条不会自动滚动到最新的项目,这意味着我希望滚动条在我添加项目时自动滚动到底部。
<ul id ="list" style ="overflow:auto; height:300px;"></ul>
--------代码省略--------------
//Register sendButton Click Event
$("#sendButton").click(function () {
hubProxy.server.send($("#inputTextBox").val());
$("#inputTextBox").val("").focus();
//HERE i want it to scroll to the bottom most
});
【问题讨论】:
标签: javascript jquery html css asp.net