// 记录当前页面滚动位置
var scrollTop = window.pageYOffset || document.documentElement.scrollTop;


// 恢复页面滚动位置
window.scrollTo(0, scrollTop);