首页 > 网站 > WEB开发 > 正文

如何通过JQuery将DIV的滚动条滚动到指定的位置

2024-04-27 15:02:28
字体:
来源:转载
供稿:网友

这里有一个方法可以将DIV的滚动条滚动到其子元素所在的位置,方便自动定位。

var container = $('div'),    inner = $('#inner');container.scrollTop(    inner.offset().top - container.offset().top + container.scrollTop());// Or you can animate the scrolling:container.animate({    scrollTop: inner.offset().top - container.offset().top + container.scrollTop()});​

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表