首页 > 代码库 > 禁止F12与右键
禁止F12与右键
实践项目的代码哦,给大家分享下,如何屏蔽右键与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与右键
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。