element ui——滚动条置顶
问题:
使用 overflow-y: auto;添加滚动条后想要将滚动条回到顶部
解决办法
<el-row> <el-col id="rightDocument" class="scrollBar"></el-col> </el-row> .scrollBar { height: calc(100vh - 300px); overflow-y: auto; } // 退回顶部 document.getElementById('rightDocument').scrollTop = 0;