1. 程式人生 > >禁止F12與右鍵

禁止F12與右鍵

www 不能 right pre 目的 屏蔽 window value doc

實踐項目的代碼哦,給大家分享下,如何屏蔽右鍵與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與右鍵