3 回答
TA贡献1812条经验 获得超5个赞
更新
您可以使用document.location.reload(true)下面提到的方法代替下面的强制技巧。
将HTML替换为:
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background-image: url('../Images/Black-BackGround.gif');
background-repeat: repeat;
}
body td {
font-Family: Arial;
font-size: 12px;
}
#Nav a {
position:relative;
display:block;
text-decoration: none;
color:black;
}
</style>
<script type="text/javascript">
function refreshPage () {
var page_y = document.getElementsByTagName("body")[0].scrollTop;
window.location.href = window.location.href.split('?')[0] + '?page_y=' + page_y;
}
window.onload = function () {
setTimeout(refreshPage, 35000);
if ( window.location.href.indexOf('page_y') != -1 ) {
var match = window.location.href.split('?')[1].split("&")[0].split("=");
document.getElementsByTagName("body")[0].scrollTop = match[1];
}
}
</script>
</head>
<body><!-- BODY CONTENT HERE --></body>
</html>
TA贡献1858条经验 获得超8个赞
document.location.reload()存储位置,请参阅docs。
添加其他true参数以强制重新加载,但不恢复位置。
document.location.reload(true)
MDN文档:
forceReload标志更改了某些浏览器处理用户滚动位置的方式。通常reload()之后会恢复滚动位置,但是强制模式可以滚动回到页面顶部,就像window.scrollY === 0一样。
TA贡献1801条经验 获得超16个赞
如果您不想使用本地存储,则可以将页面的y位置附加到url上,并在加载时使用js进行抓取,并将页面偏移量设置为传入的get参数,即:
//code to refresh the page
var page_y = $( document ).scrollTop();
window.location.href = window.location.href + '?page_y=' + page_y;
//code to handle setting page offset on load
$(function() {
if ( window.location.href.indexOf( 'page_y' ) != -1 ) {
//gets the number from end of url
var match = window.location.href.split('?')[1].match( /\d+$/ );
var page_y = match[0];
//sets the page offset
$( 'html, body' ).scrollTop( page_y );
}
});
添加回答
举报