设置页面滚动条到最底端

jquery:

$(function(){

  var h = $(document).height()-$(window).height();

  $(document).scrollTop(h);

});


js:

window.onload = function(){

  var h = document.documentElement.scrollHeight || document.body.scrollHeight;

  window.scrollTo(h,h);

}

你可能感兴趣的:(设置页面滚动条到最底端)