标签:
设置页面加载时滚动条自动滚到底的方法:
jQuery: $(function(){ var h = $(document).height()-$(window).height(); $(document).scrollTop(h); }); JavaScript: window.onload = function(){ var h = document.documentElement.scrollHeight || document.body.scrollHeight; window.scrollTo(h,h); }
标签:
原文地址:http://www.cnblogs.com/shouce/p/5132237.html