全面禁止鼠标右键、FX、Alt、Ctrl、Shift等
<DIV style="FONT-SIZE: 12px"><html><BR><BR><head><BR><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><BR><title>网页特效|Linkweb.cn/Js|---全面禁止鼠标右键、FX、Alt、Ctrl、Shift等</title><BR></head><BR><script><BR>function onKeyDown()<BR>{<BR> if ((event.keyCode==116)||(window.event.ctrlKey)||(window.event.shiftKey)||(event.keyCode==122))<BR> {<BR> event.keyCode=0;<BR> event.returnValue=false;<BR> }<BR>}<BR></script><BR><BR><script><BR>function yxl() { <BR>if(window.event.altKey) <BR>{<BR>window.event.returnValue=false;<BR>}<BR>}<BR>document.onkeydown=yxl <BR></script> <BR><body bgcolor="#000000" text="#666666" onkeydown="onKeyDown()" oncontextmenu="return false" onselectstart="return false" ondragstart="return false" ><BR><p>该页面禁止了鼠标右键,F5、F11、“应用程序”键,所有与alt、ctrl和shift有关的组合键(当然alt+f4和alt+home没有屏蔽),并且禁止了鼠标文本选择,你可以试试:) <BR> 够全了吧?</p><BR><p> </p><BR></body><BR></html></DIV>