var div=$(".chatmsgbox")[0]
? ? ? div.scrollTop =$("#conbox")[0].scrollHeight;
chatmsgbox為父級div?
conbox為子級
若使用vue默認顯示需要在這兩句代碼外面包裹一層
this.$nextTick(function(){})//異步化隊列
var div=$(".chatmsgbox")[0]
? ? ? div.scrollTop =$("#conbox")[0].scrollHeight;
chatmsgbox為父級div?
conbox為子級
若使用vue默認顯示需要在這兩句代碼外面包裹一層
this.$nextTick(function(){})//異步化隊列