js屏蔽(禁止)键盘和鼠标功能键

document.oncontextmenu=function (){
   if(event.preventDefault){
         event.preventDefault();
   }else{
         event.returnValue = false;
    }
} // 禁止右键功能,单击右键将无任何反应
document.onselectstart=function (){
     if(event.preventDefault){
            event.preventDefault();
     }else{
            event.returnValue = false;
     }
} // 禁止先择,也就是无法复制

支持chrome浏览器和ie浏览器

1 document.oncontextmenu=function (){
2    return false;
3 } // 禁止右键功能,单击右键将无任何反应
4 document.onselectstart=function (){
5    return false;
6 } // 禁止先择,也就是无法复制

支持所有浏览器

原文地址:https://www.cnblogs.com/sandianbaozi/p/2773243.html