設定頁面載入時滾動條自動滾到底的方法:
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);
}
以上2種方法都可以實現頁面載入時滾動條自動滾動到底,小夥伴們根據自己的實際需求,自由選擇吧