// 禁用鼠标右键,禁止复制粘贴等操作
// auth:JYX time:2016.07.28
banCopyAndPaste: function(){
//禁止复制
document.oncopy=function(){
event.returnValue=false:
};
// 禁止右键菜单
document.oncontextmenu=function(){
event.returnValue=false;
};
// 禁止网页上选取内容
document.onselectstart=function(){
event.returnValue=false;
};
// 键盘事件
document.onkeydown=function(){
if (event.ctrlKey){
return false;
};
},