码迷,mamicode.com
首页 > Web开发 > 详细

禁止网站F12和查看源码

时间:2017-12-14 14:51:44      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:post   turn   code   text   key   false   context   nts   contex   

window.onload=function(){
                document.onkeydown=function(){
                    var e=window.event||arguments[0];
                    if(e.keyCode==123){
                        //alert("小样你想干嘛?");
                        return false;
                    }else if((e.ctrlKey)&&(e.shiftKey)&&(e.keyCode==73)){
                        //alert("还是不给你看。。");
                        return false;
                    }
                };
                document.oncontextmenu=function(){
                    //alert("小样不给你看");
                    return false;
                }
            }

 

禁止网站F12和查看源码

标签:post   turn   code   text   key   false   context   nts   contex   

原文地址:http://www.cnblogs.com/lhj-blog/p/8037380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!