0

我有一个顶部带有徽标的页面和下方的表格。有“登录”和“加入”按钮,单击它们会展开相应的表单。我希望在单击这些按钮时也滚动到我将它们命名为“登录”和“加入”的这些表单。问题是窗口的高度不足以使滚动成为可能。我想在单击按钮然后滚动时首先修改身体高度,但我该怎么做呢?

4

1 回答 1

1

试试这个:

// first modify the body height
$('body').height($(window).height() + 1000);

// scroll to the Login button
$('html, body').animate({
    scrollTop: $('#Login').offset().top
}, 'slow');
于 2013-05-12T09:26:23.380 回答