禁用右键禁用选中屏蔽F12禁止ctrl+u
一些没用的js屏蔽
禁用右键
document.oncontextmenu=newFunction("event.returnValue=false;");禁用选中
document.onselectstart=newFunction("event.returnValue=false;");禁止 ctrl+u
window.onkeydown=function(e){
varctrlKey=e.ctrlKey||e.metaKey;
if(ctrlKey){
e.preventDefault();
}
}屏蔽F12
document.onkeydown=function(){
if(window.event){
event.returnValue=false;
returnfalse;
}
}



