/***********************这是首页面*******************************/
<body>
<P>我是首页</P>
<br>
<button onclick="show()">点击我跳转</button>
</body>
<script>
function show(){
window.history.replaceState(2, 1, './a.html')
window.location.reload();
}
</script>
</html>
/***********************这是跳转后的页面 可以回到首页面*******************************/
<body>
<h1>hhhhhhhhhhhhh</h1>
<br>
<button onclick="show()">点击我返回</button>
</body>
<script>
function show(){
window.history.replaceState(2, 1, './index.html')
window.location.reload();
}
</script>
window.history.replaceState(stateObj, title, './index.html')//replace
window.location.reload(); //页面进行再次加载