切换滑动后滚动到底部?

时间:2012-10-24 07:50:38

标签: javascript jquery

我正在尝试执行以下操作 - 一旦我单击一个href,表单容器向下滑动,就没有问题了。我也试图让页面向下滚动到底部(平滑,动画滚动),以便在下滑过程中可以查看内容。

我的尝试:

<a class="enter" id=slide href="#bottom"></a>
<div class="form-container">
</div>

    <script type="text/javascript">     
$("#slide").click(function () {
   $('.form-container').slideToggle();
});

$("a[href='#bottom']").click(function() {
  $('html, body').animate({ 
   scrollTop: $(document).height()-$(window).height()}, 
   1400, 
   "easeOutQuint"
);
});    
    </script>

1 个答案:

答案 0 :(得分:0)

使用此

$("#slide").click(function(e) {
   e.preventDefault();
  $("html, body").animate({ scrollTop: $(document).height() }, "slow");
  return false;
});