禁止鼠标右键和禁止F12

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

     $(document).keydown(function(e) {
        if (e.keyCode == 123) {
            return false;
        }
        if ((e.ctrlKey) && (e.keyCode == 83)) { //ctrl+s
            return false;
        }
    });
})
Last modification:September 17, 2020
如果觉得我的文章对你有用,请随意赞赏