自动滚动到页面底部


415

考虑一下我有一个问题清单。当我单击第一个问题时,它应该自动带我到页面底部。

事实上,我确实知道可以使用jQuery完成此操作。

因此,您能否为我提供一些文档或一些链接,以便我找到该问题的答案?

编辑:需要滚动到页面底部的特定HTML 元素


Answers:


807

不需要jQuery。我从Google搜索获得的大多数热门结果都给了我这个答案:

window.scrollTo(0,document.body.scrollHeight);

在嵌套元素的地方,文档可能不会滚动。在这种情况下,您需要定位要滚动的元素,并改用滚动高度。

window.scrollTo(0,document.querySelector(".scrollingContainer").scrollHeight);

您可以将其与onclick您的问题(即<div onclick="ScrollToBottom()" ...)联系起来。

您可以查看一些其他资源:


29
没为我工作。我是这样做的:element.scrollTop = element.scrollHeight
Esamo

7
2016年5月4日:请注意,“ scrollTo”功能是实验性功能,不适用于所有浏览器。
corgrath

1
scrollto在我的浏览器上不起作用,我在stackoverflow.com/questions/8917921/…下找到了此链接,该链接非常有用,因为解决方案可在我尝试过的浏览器上使用。
user3655574

对于单独的元素,这是可行的解决方案:document.querySelector(“。scrollingContainer”)。scrollTo(0,document.querySelector(“。scrollingContainer”)。scrollHeight);
mPrinC

可能必须将html设置为100%,身体高度才能滚动到底部
Trever Thompson

106

如果要将整个页面滚动到底部:

var scrollingElement = (document.scrollingElement || document.body);
scrollingElement.scrollTop = scrollingElement.scrollHeight;

查看样品的jsfiddle

如果要将元素滚动到底部:

function gotoBottom(id){
   var element = document.getElementById(id);
   element.scrollTop = element.scrollHeight - element.clientHeight;
}

这就是它的工作方式:

在此处输入图片说明

参考:scrollTopscrollHeightclientHeight

更新: Chrome(61+)和Firefox的最新版本不支持正文滚动,请参阅:https : //dev.opera.com/articles/fixing-the-scrolltop-bug/


该解决方案适用于Chrome,Firefox,Safari和IE8 +。看看这个链接,更详细quirksmode.org/dom/w3c_cssom.html
芹苴

1
@luochenhuan,我刚刚使用“ document.scrollingElement”而不是“ document.body”修复了示例代码,请参见上文
David Avsajanishvili

58

Vanilla JS实现:

element.scrollIntoView(false);

https://developer.mozilla.org/zh-CN/docs/Web/API/element.scrollIntoView


3
使用jQuery $('#id')[0] .scrollIntoView(false);
alexoviedo999

4
目前只使用Firefox
tim-we

现在可以在较新版本的Chrome中使用,但是某些额外的选项(例如平滑滚动)似乎尚未实现。
Matt Zukowski

我在页面末尾添加了一个空的div,并使用了该div的ID。工作完美。
Nisba

5
更好:element.scrollIntoView({behavior: "smooth"});
blalond

26

您可以使用它以动画格式浏览页面。

$('html,body').animate({scrollTop: document.body.scrollHeight},"fast");

23

下面应该是跨浏览器解决方案。已在Chrome,Firefox,Safari和IE11上经过测试

window.scrollTo(0, document.body.scrollHeight || document.documentElement.scrollHeight);

window.scrollTo(0,document.body.scrollHeight); 不适用于Firefox,至少适用于Firefox 37.0.2


1
确实可以在Firefox 62.0.3中运行,但是当他们解决该问题时我还不知道。
zb226

12

有时,页面在滚动时会扩展到buttom(例如在社交网络中),然后向下滚动到末尾(页面的最终buttom),我使用以下脚本:

var scrollInterval = setInterval(function() { 
    document.documentElement.scrollTop = document.documentElement.scrollHeight;
}, 50);

如果您在浏览器的JavaScript控制台中,则可以停止滚动可能会很有用,因此请添加:

var stopScroll = function() { clearInterval(scrollInterval); };

然后用 stopScroll();

如果需要滚动到特定元素,请使用:

var element = document.querySelector(".element-selector");
element.scrollIntoView();

或用于自动滚动到特定元素的通用脚本(或停止页面滚动间隔):

var notChangedStepsCount = 0;
var scrollInterval = setInterval(function() {
    var element = document.querySelector(".element-selector");
    if (element) { 
        // element found
        clearInterval(scrollInterval);
        element.scrollIntoView();
    } else if((document.documentElement.scrollTop + window.innerHeight) != document.documentElement.scrollHeight) { 
        // no element -> scrolling
        notChangedStepsCount = 0;
        document.documentElement.scrollTop = document.documentElement.scrollHeight;
    } else if (notChangedStepsCount > 20) { 
        // no more space to scroll
        clearInterval(scrollInterval);
    } else {
        // waiting for possible extension (autoload) of the page
        notChangedStepsCount++;
    }
}, 50);

let size =($(“ div [class * ='card-inserted']”))。length; ($(“ div [class * ='card-inserted']”))[size -1] .scrollIntoView();
nobjta_9x_tq '18年

11

您可以在需要调用此函数的地方使用它:

function scroll_to(div){
   if (div.scrollTop < div.scrollHeight - div.clientHeight)
        div.scrollTop += 10; // move down

}

jquery.com:ScrollTo


对我来说,document.getElementById('copyright').scrollTop += 10它不起作用(在最新的Chrome中)...仍然为零...
Kyle Baker

10

您也可以使用动画来做到这一点,它非常简单

$('html, body').animate({
   scrollTop: $('footer').offset().top
   //scrollTop: $('#your-id').offset().top
   //scrollTop: $('.your-class').offset().top
}, 'slow');

希望对您有帮助,谢谢


7

一根衬纸可平滑滚动到底部

window.scrollTo({ left: 0, top: document.body.scrollHeight, behavior: "smooth" });

要向上滚动,只需将其设置top0


4

您可以将任何附加idhref链接元素的引用属性:

<a href="#myLink" id="myLink">
    Click me
</a>

在上面的示例中,当用户单击Click me页面底部时,导航会导航到Click me自身。


这不适合我,因为它会更改url,然后将我的角度应用重定向到其他内容!
heman123

3

您可以尝试Gentle Anchors一个不错的javascript插件。

例:

function SomeFunction() {
  // your code
  // Pass an id attribute to scroll to. The # is required
  Gentle_Anchors.Setup('#destination');
  // maybe some more code
}

兼容性测试于:

  • Mac Firefox,Safari,Opera
  • Windows Firefox,Opera,Safari,Internet Explorer 5.55+
  • Linux未经测试,但至少与Firefox兼容

3

晚了聚会,但是这里有一些简单的纯JavaScript代码,可将任何元素滚动到底部:

function scrollToBottom(e) {
  e.scrollTop = e.scrollHeight - e.getBoundingClientRect().height;
}

3

对于在Selenium中向下滚动,请使用以下代码:

直到底部下拉菜单,滚动到页面高度。使用以下在JavaScript和React中都能正常运行的javascript代码。

JavascriptExecutor jse = (JavascriptExecutor) driver; // (driver is your browser webdriver object) 
jse.executeScript("window.scrollBy(0,document.body.scrollHeight || document.documentElement.scrollHeight)", "");

3

试图计算文档高度的答案太多了。但这对我来说计算不正确。但是,这两个都起作用:

jQuery的

    $('html,body').animate({scrollTop: 9999});

或只是js

    window.scrollTo(0,9999);

大声笑“工作”。如果文档长于该9999怎么办?
Dan Dascalescu

1
@DanDascalescu 99999
安德鲁

2

这是我的解决方案:

 //**** scroll to bottom if at bottom

 function scrollbottom() {
    if (typeof(scr1)!='undefined') clearTimeout(scr1)   
    var scrollTop = (document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop;
    var scrollHeight = (document.documentElement && document.documentElement.scrollHeight) || document.body.scrollHeight;
    if((scrollTop + window.innerHeight) >= scrollHeight-50) window.scrollTo(0,scrollHeight+50)
    scr1=setTimeout(function(){scrollbottom()},200) 
 }
 scr1=setTimeout(function(){scrollbottom()},200)

什么...到底在发生什么?在乎您解释解决方案吗?不鼓励仅使用代码的答案。
Dan Dascalescu

0

这将保证滚动到底部

头码

<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<script language="javascript" type="text/javascript">
function scrollToBottom() {
  $('#html, body').scrollTop($('#html, body')[0].scrollHeight);
}
</script>

身体代码

<a href="javascript:void(0);" onmouseover="scrollToBottom();" title="Scroll to Bottom">&#9660; Bottom &#9660;</a>

0

一张图片胜过千言万语:

关键是:

document.documentElement.scrollTo({
  left: 0,
  top: document.documentElement.scrollHeight - document.documentElement.clientHeight,
  behavior: 'smooth'
});

它正在使用document.documentElement,这是<html>元素。这就像使用window,但它仅仅是我个人的喜好这样做,因为如果不是整个页面,但一个容器,它的工作原理就是这样的,除非你会改变document.bodydocument.documentElementdocument.querySelector("#container-id")

例:

let cLines = 0;

let timerID = setInterval(function() {
  let elSomeContent = document.createElement("div");

  if (++cLines > 33) {
    clearInterval(timerID);
    elSomeContent.innerText = "That's all folks!";
  } else {
    elSomeContent.innerText = new Date().toLocaleDateString("en", {
      dateStyle: "long",
      timeStyle: "medium"
    });
  }
  document.body.appendChild(elSomeContent);

  document.documentElement.scrollTo({
    left: 0,
    top: document.documentElement.scrollHeight - document.documentElement.clientHeight,
    behavior: 'smooth'
  });

}, 1000);
body {
  font: 27px Arial, sans-serif;
  background: #ffc;
  color: #333;
}

如果没有,您可以比较差异scrollTo()


0

一种简单的方法,如果您想向下滚动特定的元素

每当您要向下滚动时,请调用此函数。

function scrollDown() {
 document.getElementById('scroll').scrollTop =  document.getElementById('scroll').scrollHeight
}
ul{
 height: 100px;
 width: 200px;
 overflow-y: scroll;
 border: 1px solid #000;
}
<ul id='scroll'>
<li>Top Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Something Here</li>
<li>Bottom Here</li>
<li style="color: red">Bottom Here</li>
</ul>

<br />

<button onclick='scrollDown()'>Scroll Down</button>


这并不简单,需要创建一个scroll元素。
Dan Dascalescu

@DanDascalescu你是对的!但是我的代码有效,我认为它不应该被否决
Shrroy

“工作”还不够。此页面上的所有解决方案在某种程度上都能“起作用”。而且有很多。读者应该如何决定?
Dan Dascalescu

0

我有一个具有动态内容的Angular应用程序,但我尝试了上述几个答案,但收效甚微。我调整了@Konard的答案,并使其在普通JS中可以正常工作:

的HTML

<div id="app">
    <button onClick="scrollToBottom()">Scroll to Bottom</button>
    <div class="row">
        <div class="col-md-4">
            <br>
            <h4>Details for Customer 1</h4>
            <hr>
            <!-- sequence Id -->
            <div class="form-group">
                <input type="text" class="form-control" placeholder="ID">
            </div>
            <!-- name -->
            <div class="form-group">
                <input type="text" class="form-control" placeholder="Name">
            </div>
            <!-- description -->
            <div class="form-group">
                <textarea type="text" style="min-height: 100px" placeholder="Description" ></textarea>
            </div>
            <!-- address -->
            <div class="form-group">
                <input type="text" class="form-control" placeholder="Address">
            </div>
            <!-- postcode -->
            <div class="form-group">
                <input type="text" class="form-control" placeholder="Postcode">
            </div>
            <!-- Image -->
            <div class="form-group">
                <img style="width: 100%; height: 300px;">
                <div class="custom-file mt-3">
                    <label class="custom-file-label">{{'Choose file...'}}</label>
                </div>
            </div>
            <!-- Delete button -->
            <div class="form-group">
                <hr>
                <div class="row">
                    <div class="col">
                        <button class="btn btn-success btn-block" data-toggle="tooltip" data-placement="bottom" title="Click to save">Save</button>
                        <button class="btn btn-success btn-block" data-toggle="tooltip" data-placement="bottom" title="Click to update">Update</button>
                    </div>
                    <div class="col">
                        <button class="btn btn-danger btn-block" data-toggle="tooltip" data-placement="bottom" title="Click to remove">Remove</button>
                    </div>
                </div>
                <hr>
            </div>
        </div>
    </div>
</div>

的CSS

body {
    background: #20262E;
    padding: 20px;
    font-family: Helvetica;
}

#app {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    transition: all 0.2s;
}

JS

function scrollToBottom() {
    scrollInterval;
    stopScroll;

    var scrollInterval = setInterval(function () {
        document.documentElement.scrollTop = document.documentElement.scrollHeight;
    }, 50);

    var stopScroll = setInterval(function () {
        clearInterval(scrollInterval);
    }, 100);
}

在最新的Chrome,FF,Edge和现有的Android浏览器上进行了测试。这是一个小提琴:

https://jsfiddle.net/cbruen1/18cta9gd/16/


-1
getDocHeight: function() {
  var D = document;
  return Math.max(
    D.body.scrollHeight,
    D.documentElement.scrollHeight,
    D.body.offsetHeight,
    D.documentElement.offsetHeight,
    D.body.clientHeight,
    D.documentElement.clientHeight
  );
}

document.body.scrollTop = document.documentElement.scrollTop = this.getDocHeight();


-1

如果有人在寻找Angular

您只需要向下滚动将其添加到您的div中

 #scrollMe [scrollTop]="scrollMe.scrollHeight"

   <div class="my-list" #scrollMe [scrollTop]="scrollMe.scrollHeight">
   </div>
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.