码迷,mamicode.com
首页 > Web开发 > 详细

JS JQUERY实现滚动条自动滚到底的方法

时间:2017-06-01 16:41:04      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:func   height   query   scroll   滚动   top   document   jquer   nbsp   

 

$(function(){

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

  $(document).scrollTop(h);

});

 

\

 

 

window.onload = function(){

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

  window.scrollTo(h,h);

}

 

JS JQUERY实现滚动条自动滚到底的方法

标签:func   height   query   scroll   滚动   top   document   jquer   nbsp   

原文地址:http://www.cnblogs.com/tongzhou/p/6929061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!