js禁止浏览器页面后退功能实例详解
程序员文章站
2022-03-28 18:04:25
...
下面小编就为大家带来一篇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禁止浏览器页面后退功能实例详解的详细内容,更多请关注其它相关文章!
上一篇: ps钢笔压力有感叹号怎么办