js scrollTop, 滚动条操作

Posted 再前一步~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js scrollTop, 滚动条操作相关的知识,希望对你有一定的参考价值。

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

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

<button onclick="text1.scrollTop=text1.scrollHeight">滚动</button><br>

cache the xmlhttprequest instance, if you want to use setinterval or settimeout. or, there might be a memory leap.

  

以上是关于js scrollTop, 滚动条操作的主要内容,如果未能解决你的问题,请参考以下文章

js 滚动条滑动

js的onscroll、scrollTop、scrollHeight及window.scroll

JS如何判断浏览器滚动条的位置

浏览器滚动条操作

web自动化中页面多个滚动条时的拖动操作?

js window.scroll 怎么判断滚动到底部