向下滚动到页脚

时间:2012-07-24 10:42:29

标签: javascript jquery

当使用jquery点击指定的div时,任何人都知道如何自动向下滚动到页脚部分?

4 个答案:

答案 0 :(得分:1)

您可以jQuery.ScrollTo为您的页脚部分提供ID,然后查看demo

答案 1 :(得分:0)

这应该这样做。

$('#clickableItem').bind('click', function () {
  // get the distence left and top from the document left and top sides
  var _offset = $('#footer').offset(); 
  $(window).scrollTop(_offset.top);
};

答案 2 :(得分:0)

试试这个,

<强> HTML

<a href="#" id="GoToFooter">GoToFooter</a>

<强>脚本

<script type="text/javascript">

$(document).ready(function(){

 $('#GoToFooter').click(function(){

 $('html, body').animate({scrollTop: $(document).height()}, 300);

 return false;

 });
})
</script>

答案 3 :(得分:0)

$("body").height()将计算窗口的高度 如果你将高度值分配给你的html / body作业的scrollTop属性

$('html, body').scrollTop($("body").height());