code

//例如:页面高度1000,屏幕高度900,相差100,
//scrollTop:向上滚动100像素,就到达页面底部了。
function ScrollToBottom() {
    $("html, body").animate({ scrollTop: $(document).height() - $(window).height() });
}