1. 方法一: 从其他地方找的, 超好用, 收藏
<script language="javascript"> //防止页面后退 history.pushState(null, null, document.URL); window.addEventListener(‘popstate‘, function () { history.pushState(null, null, document.URL); scrollTo(0,0); }); </script>
2. 方法二: url没有变但是页面还会刷新
<script language="JavaScript"> javascript:window.history.forward(1); </script>
时间: 2024-11-20 13:40:15