1. 程式人生 > >JS禁用瀏覽器前進後退

JS禁用瀏覽器前進後退

null rip UNC 後退 js禁用 禁用 span pan url

<script language="javascript">
          //防止頁面後退
          history.pushState(null, null, document.URL);
          window.addEventListener(‘popstate‘, function () {
              history.pushState(null, null, document.URL);
          });
</script>

可以屏蔽鼠標和鍵盤的回退

JS禁用瀏覽器前進後退