Disable browser's back button

后端 未结 20 1828
猫巷女王i
猫巷女王i 2020-11-22 04:27

How to disable browser\'s BACK Button (across browsers)?

20条回答
  •  佛祖请我去吃肉
    2020-11-22 05:11

    IF you need to softly suppress the delete and backspace keys in your Web app, so that when they are editing / deleting items the page does not get redirected unexpectedly, you can use this code:

    window.addEventListener('keydown', function(e) {
      var key = e.keyCode || e.which;
      if (key == 8 /*BACKSPACE*/ || key == 46/*DELETE*/) {
        var len=window.location.href.length;
        if(window.location.href[len-1]!='#') window.location.href += "#";
      }
    },false);
    

提交回复
热议问题