如何使用jQuery将具有“overflow:auto”样式的特定div滚动到底部?
$("#container").scrollTop($("#elementToScrollTo").position().top);
如果你想顺利进行:
$("#container").animate({ scrollTop: $("#elementToScrollTo").position().top },1000);
在这里,有一个小提琴:http://jsfiddle.net/adrianonantua/nxHE8/