码迷,mamicode.com
首页 > 其他好文 > 详细

禁止F12与右键

时间:2017-07-15 14:48:32      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:log   目的   als   func   class   can   mouse   false   and   

实践项目的代码哦,给大家分享下,如何屏蔽右键与F12。

 

应用网站  www.empiretreasure.vip   与       www.MineBook.vip。可以去逛逛哦。

 

不多说了,上代码。

 

<script>
    /*you can‘t use the F12 and right button*/
document.onkeydown = function(){
if(window.event && window.event.keyCode == 123) {
  alert("嗨~~感谢您的喜欢 \n Welcome to E‘treasure \n 但是不能使用F12哦~~ \n But sorry, you can not use F12");
  event.keyCode=0;
  event.returnValue=false;
 }
}
 document.onmousedown=function(oEvent){
   if(window.event)
    oEvent=window.event;
   if(oEvent.button==2)
    alert("嗨~~感谢您的喜欢 \n Welcome to E‘treasure \n 但是不能使用右键哦~~ \n But sorry, you can‘t use right button");}// JavaScript Document
    </script>

OK,完成啦。

 

 

(怎么感觉写过这个呢~~~~~~)

禁止F12与右键

标签:log   目的   als   func   class   can   mouse   false   and   

原文地址:http://www.cnblogs.com/empist/p/7182493.html

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