code
//例如:页面高度1000,屏幕高度900,相差100, //scrollTop:向上滚动100像素,就到达页面底部了。 function ScrollToBottom() { $("html, body").animate({ scrollTop: $(document).height() - $(window).height() }); }
标签:滚动,height,scrollTop,100,JS,页面 From: https://www.cnblogs.com/xsj1989/p/17146779.html