一个div滚动到底部
let mainDom = document.getElementsByClassName('scroll-smooth')[0]
mainDom.scrollTo({
top: mainDom.scrollHeight, // 页面底部位置
behavior: 'smooth' // 平滑滚动
});
也可以用scrollIntoView 方法 处理
mainDom.scrollIntoView({ behavior: "smooth", block: "end" });