document.oncontextmenu = function(){
alert("该页无法使用右键，系统禁止复制该页信息！");
return false;
}
//功能：禁用Ctrl+C
document.onkeydown = function(){
if (event.ctrlKey && window.event.keyCode==67){
alert("该页无法使用Ctrl+C，系统禁止复制该页信息！"); 
return false;
}
}

//功能：禁用鼠标选取功能
document.onselectstart = function(){
alert("该页无法选取文字，系统禁止复制该页信息！"); 
return false;
}
