用的是vue ,列表展开用的是折叠面板 el-collapse-item
scroll(index) {
document.getElementsByClassName('tr2')[index].scrollIntoView()
}
scroll(index) {
this.$refs.tbody.scrollTop = index60 //索引字段高度
}
也可以换个思路,比如使用a标签的锚点
<div id="final">被跳过来的</div>
<a href="#final">点击过去</a>