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.
我正在建立一个网页。我想在重新加载后始终将页面位置保持在顶部,但这并没有发生。如果我当前的滚动位置是 X,那么在重新加载后网页位置再次保持在位置 X。如何解决?
使用 javascript scrollTo 方法在页面的 0,0 位置滚动。
window.scrollTo(0,0)
确保将这行代码保留在文档就绪事件/页面加载事件中或页面的最后,因为在页面准备好后浏览器滚动到上一个位置。
maintainScrollPositionOnPostback="true"在 web.config 中设置。
maintainScrollPositionOnPostback="true"