我目前正在开发一个支持ajax的网站。浏览网站和浏览器的历史记录很有用,但有一个问题我无法解决。
当用户按下后退按钮时,会再次显示最后一页。但是,虽然我通过popstate事件将垂直滚动位置设置为前一个,但它再次跳回到顶部...
function loadContent(nextContent, nextUrl, newPage = true) {
var currUrl = window.location.pathname;
currUrl = currUrl.slice(7,currUrl.length);
var scrollY = window.scrollY;
var prevContent = document.getElementById("page").innerHTML;
document.getElementById("page").innerHTML = nextContent;
if (newPage) {
// overwrite current history entry
history.replaceState({ content: prevContent, url: currUrl, scrollY: scrollY }, null, currUrl);
initPage();
window.scrollTo(0,0);
// write new entry
history.pushState({ content: nextContent, url: nextUrl, scrollY: 0 }, null, nextUrl);
} else {
initPage();
// scroll to previous scroll position
window.scrollTo(0,history.state.scrollY);
}
}
window.onpopstate = function(e) {
loadContent(e.state.content, e.state.url, false);
// page scrollY will be set in load, after page content was added
}
我知道代码到目前为止工作,因为早先我在window.scrollTo()之后发出警告,并且在我看到冻结期间,页面位于正确的位置。但在继续它跳到顶部之后。是否有另一个(默认)事件,在后台滚动到顶部?
感谢您的帮助
答案 0 :(得分:1)
我现在通过将onpopstate函数更改为以下内容来解决问题:
window.onpopstate = function(e) {
loadContent(e.state.content, e.state.url, false);
// as previous window.scrollTo() have no effect, do it within a few millisecs again
setTimeout(function() {
window.scrollTo(0,history.state.scrollY);
}, 5);
}
不是很漂亮,但它确实有效。如果有人知道一个干净的修复或这种效果发生的原因,请分享您的知识!