JS JQUERY实现滚动条自动滚到底的方法
设置页面加载时滚动条自动滚到底的方法:
jQuery:
$(function(){ varh=$(document).height()-$(window).height(); $(document).scrollTop(h); });
JavaScript:
window.onload=function(){ varh=document.documentElement.scrollHeight||document.body.scrollHeight; window.scrollTo(h,h); }
以上2种方法均可以实现页面加载时滚动条自动滚动到底,小伙伴们根据自己的实际需求,自由选择吧