美文网首页
js禁止原生手机返回键(物理返回键)

js禁止原生手机返回键(物理返回键)

作者: 月下吴刚_c8c7 | 来源:发表于2019-06-03 19:18 被阅读0次

对PC浏览器端和移动端都适用

//拦截安卓回退按钮
history.pushState(null, null, location.href);
window.history.forward(1);  // 此行可以兼容 IE
window.addEventListener('popstate', function(event) {
    history.pushState(null, null, location.href );
    window.history.forward(1);
    //此处加入回退时你要执行的代码
}); 

相关文章

网友评论

      本文标题:js禁止原生手机返回键(物理返回键)

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