禁止浏览器刷新

1 禁用f5(无法兼容ie8且有个小bug就是f12之后,切换一下debug菜单就可以刷新了)

    $(document).on('keydown', function(e) {
        if(e.keyCode == 116) {
            return false;
        }


    });


2 禁用菜单(兼容ie8+)

    $(document).on("contextmenu",function(e){
        return false;
    });

你可能感兴趣的:(禁止浏览器刷新)