jq让滚动条到底部

var div=$(".chatmsgbox")[0]

      div.scrollTop =$("#conbox")[0].scrollHeight;

chatmsgbox为父级div 

conbox为子级

若使用vue默认显示需要在这两句代码外面包裹一层

this.$nextTick(function(){})//异步化队列

你可能感兴趣的:(jq让滚动条到底部)