当使用jquery点击指定的div
时,任何人都知道如何自动向下滚动到页脚部分?
答案 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());