如何使用 jquery 向下滚动到 iframe 或页面的底部?
如果您想要一个不错的慢速动画滚动,对于任何带有href="#bottom"此功能的锚点都会将您滚动到底部:
href="#bottom"
$("a[href='#bottom']").click(function() { $("html, body").animate({ scrollTop: $(document).height() }, "slow"); return false; });
随意更改选择器。