0

我有一个包含几个 div 的页面。

当用户单击某个 div 的按钮时,该 div 位于页面下方的中间位置,因此 div 的顶部更像是页面的顶部。

我如何使用 jquery 做到这一点?

4

1 回答 1

1

尝试这个

$("#button").click(function() {
     $('html, body').animate({
         scrollTop: $("#elementtoScrollToID").offset().top
     }, 2000);
 });

另请参阅jQuery 滚动到元素

于 2012-04-17T09:22:33.177 回答