如何将滚动条设置到部分顶部/忘记滚动位置

发布于 2024-11-10 07:00:50 字数 279 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

快乐很简单 2024-11-17 07:00:50

您可以在手风琴的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.

送你一个梦 2024-11-17 07:00:50

将元素的 scrollTop 属性设置为 0

set the scrollTop-property of the element to 0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文