Posted in Javascript onMay 05, 2014
这里有一个方法可以将DIV的滚动条滚动到其子元素所在的位置,方便自动定位。
var container = $('div'), scrollTo = $('#row_8'); container.scrollTop( scrollTo.offset().top - container.offset().top + container.scrollTop() ); // Or you can animate the scrolling: container.animate({ scrollTop: scrollTo.offset().top - container.offset().top + container.scrollTop() });
不需要任何JQuery插件即可完成所需的效果,非常好用!
通过JQuery将DIV的滚动条滚动到指定的位置方便自动定位
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@