试了网上不少的js禁止浏览器后退的代码,发现只有下面的一种效果还是可以的。
<script language="javascript"> history.pushState(null, null, document.URL); window.addEventListener(‘popstate‘, function () { history.pushState(null, null, document.URL); }); </script>
2022-04-28 03:00:45
试了网上不少的js禁止浏览器后退的代码,发现只有下面的一种效果还是可以的。
<script language="javascript"> history.pushState(null, null, document.URL); window.addEventListener(‘popstate‘, function () { history.pushState(null, null, document.URL); }); </script>