通过选择器寻找dom节点
document.getElementById('').getBoundingClientRect().top
通过ref获取到当前dom节点
e.target.getBoundingClientRect().top
展示效果
平滑的自动上拉到页面顶部
window.scrollTo({ top:0, behavior:"smooth" })
document.getElementById('').getBoundingClientRect().top
e.target.getBoundingClientRect().top
window.scrollTo({ top:0, behavior:"smooth" })