下面小編就為大家帶來一篇js禁止瀏覽器頁面後退功能的實例(推薦)。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
實例如下圖:
<script> $(function(){ if(window.location.href.indexOf("/login") > -1) { //防止页面后退 history.pushState(null, null, document.URL); window.addEventListener('popstate', function () { history.pushState(null, null, document.URL); }); } }); </script>
以上是js禁止瀏覽器頁面後退功能實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!