对于带有滚动条的DIV,是否可以使用JQuery使该DIV一直滚动到底部?

For a DIV with scrollbars, is it possible to make that div scroll all the way to the bottom, using JQuery?

本文关键字:DIV 一直 JQuery 使该 滚动 底部 可以使 于带 滚动条 是否      更新时间:2023-09-26

如何使用JQuery做到这一点?

尝试操作scrollHeight:

http://kisdigital.wordpress.com/2009/11/12/using-jquery-to-scroll-to-the-bottom-of-a-div/

$("#myDiv").attr({ scrollTop: $("#myDiv").attr("scrollHeight") });

如果你想让它动画化:

$("#myDiv").animate({ scrollTop: $("#myDiv").attr("scrollHeight") }, 3000);

我会使用jQuery的ScrollTo插件

$('div').scrollTo(...);//all divs

http://flesler.blogspot.com/2007/10/jqueryscrollto.html