這裡有一個方法可以將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(op()
});
不需要任何JQuery插件即可完成所需的效果,非常好用!