美文网首页
js禁止浏览器后退按钮操作

js禁止浏览器后退按钮操作

作者: 仰望天空的人 | 来源:发表于2019-01-21 12:38 被阅读7次

    1、伪操作

    window.history.forward(1); 
    

    也行 ,也能用,体验不太好,放在点击跳转的页面, 而不是被跳转的页面

    2、终极方案

    history.pushState(null, null, document.URL);
        window.addEventListener('popstate', function () {
            history.pushState(null, null, document.URL);
        });
    

    无所遁形,被跳转的页面

    相关文章

      网友评论

          本文标题:js禁止浏览器后退按钮操作

          本文链接:https://www.haomeiwen.com/subject/ecccjqtx.html