Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有里面有树视图的 div。Div 比树小,所以在右侧我有垂直滚动条。当用户按下 div 外的某个按钮时,我想滚动到 div 内的指定项目(我知道该项目的 ID)。
如何滚动垂直滚动条?如何专注于某个元素?
我认为您可以分两个阶段进行:
首先,使用 jQuery 函数获取元素在 div 中的位置.scrollTop()。然后,设置 div 的滚动位置:$(yourdiv).scrollTop(yourElementPosition)
.scrollTop()
$(yourdiv).scrollTop(yourElementPosition)
这是函数.scrollTop()的官方文档