这里有一个方法可以将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插件即可完成所需的效果,非常好用!
复制代码 代码如下:
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插件即可完成所需的效果,非常好用!
标签:
DIV,滚动条,指定位置
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“通过JQuery将DIV的滚动条滚动到指定的位置方便自动定位”评论...