您可以尝试使用 HTML5 sessionStorage 将用户网页存储在第一个脚本中,然后在第二个脚本中检索它
编辑:现在使用代码:
编辑 2:现在使用 onpageload
由于这个 onload() 你不能将 checkPage 函数移动到正文
第 1 页:
<!DOCTYPE html>
<html>
<head>
<script>
function checkPage(){
if(sessionStorage.visited != 1){
sessionStorage.startingPage = document.URL;
window.location.href = 'sessionstorage2.html';
}
else{
return;
}
}
</script>
</head>
<body onload='checkPage()'>
text or something
<br><br>
<script>
function reset(){
sessionStorage.visited = 0;
}
</script>
<button onclick='reset()'>Reset Function</button>
</body>
</html>
第2页:
<!DOCTYPE html>
<html>
<body>
<script>
function return(){
window.location.href = sessionStorage.startingPage;
sessionStorage.visited = 1;
}
</script>
<p><button onclick="return()" type="button">Return to Page 1</button></p>
</body>
</html>