Scroll Automatically to the Bottom of the Page

后端 未结 24 2889
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 05:22

Consider I have a list of questions. When I click on the first question, it should automatically take me to the bottom of the page.

For a matter of fact, I do know

24条回答
  •  梦如初夏
    2020-11-22 05:58

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

提交回复
热议问题