欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
将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插件即可完成所需的效果,非常好用!

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h64683.shtml