使用jQuery跳转到页面底部 - 没有动画

Eva*_*nss 14 javascript jquery

如何使用jQuery跳转到页面底部?

我不想要一个更平滑的动画,只是为了'跳'.我发现这个网站上的所有其他问题似乎都涉及动画.

iCo*_*nor 27

这样做

$('html, body').scrollTop( $(document).height() );
Run Code Online (Sandbox Code Playgroud)

scrollTop( vHeight );


dee*_*akb 9

动画

$("html, body").animate({ scrollTop: $(document).height() }, "slow");
Run Code Online (Sandbox Code Playgroud)

没有动画

$('html, body').scrollTop( $(document).height() );
Run Code Online (Sandbox Code Playgroud)