美文网首页
VUE、js方法页面点击滚到最底部

VUE、js方法页面点击滚到最底部

作者: 生于乱世 | 来源:发表于2021-07-15 15:43 被阅读0次

1.无滚动条时

// 页面滚到最底部
  toBottom(){
    var height = document.body.clientHeight;
    window.scroll({ top: height , left: 0, behavior: 'smooth' });
 
  }

2.有滚动条时可用

// 滚动到最底部
    toBottom(){
      this.$nextTick(()=>{
        var scrollDom = document.getElementById('chatBox');
        scrollDom.scrollTop = scrollDom.scrollHeight
      })
    },

方法调用

//调用
this.$nextTick(()=>{
this.toBottom()
})

相关文章

网友评论

      本文标题:VUE、js方法页面点击滚到最底部

      本文链接:https://www.haomeiwen.com/subject/syxmpltx.html