How do I disable the F5 refresh on the browser?

前端 未结 4 674
栀梦
栀梦 2021-01-12 18:12

Preferably using JavaScript but would like to hear other ways too

4条回答
  •  天涯浪人
    2021-01-12 18:47

    This will disable F5, but not the actual refresh function:

    document.onkeydown = function (e) {
      if (e.keyCode === 116) {
        return false;
      }
    };
    

    On Chrome/XP, at least.

提交回复
热议问题