如何将滚动条设置到部分顶部/忘记滚动位置
我正在使用 jQuery UI 手风琴。其中一个部分有一个滚动条。我希望每次打开该部分时该滚动条都默认位于顶部。目前,它“记住”了之前的位置。有没有办法让它忘记它的位置或总是默认到顶部。我只想为特定部分设置此项,而不是整个页面。
这篇帖子建议使用window.scrollTo(0, 0);
强制页面滚动到顶部。但我不确定如何将其仅应用于特定部分。
I am using jQuery UI Accordion. One section has a scroll bar. I would like that scroll bar to default to the top every time that section is opened. Currently, it "remembers" its previous position. Is there a way to make it forget its position or always default to the top. I only want to set this for the particular section, not the entire page.
This post suggests using window.scrollTo(0, 0);
to force the page to scroll to the top. But I'm unsure how to apply that to only a particular section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在手风琴的change或changestart事件中将.ui-accordion-content的滚动位置设置为0。
You can set the scroll position of .ui-accordion-content to 0 at the accordion's change or changestart event.
将元素的 scrollTop 属性设置为 0
set the scrollTop-property of the element to 0