滚动条自动滚到底

设置页面加载时滚动条自动滚到底的方法:

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);

}

posted @ 2015-01-08 12:29  纤锐  阅读(611)  评论(2编辑  收藏  举报