如何使div成为屏幕jquery的顶部?

时间:2012-04-17 09:14:33

标签: jquery

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

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

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

1 个答案:

答案 0 :(得分:1)

试试这个

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

另见jQuery scroll to element