码迷,mamicode.com
首页 > Web开发 > 详细

js禁止浏览器页面后退功能

时间:2017-08-31 21:12:41      阅读:1434      评论:0      收藏:0      [点我收藏+]

标签:doc   index   state   his   blog   event   log   浏览器   防止   

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禁止浏览器页面后退功能

标签:doc   index   state   his   blog   event   log   浏览器   防止   

原文地址:http://www.cnblogs.com/cxzhijia/p/7460256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!