滚动条滚动到页面底部 js实现代码 window.scroll(0, document.querySelector('body').scrollHeight) JQuery实现代码 var h = $(document).height()-$(window).height(); $(document).scrollTop(h);