欢迎各位兄弟 发布技术文章
这里的技术是共享的
<script>
document.onkeydown = function(e){
var e=e||event;
if (e.ctrlKey==1 && e.keyCode==67){
return false;
}
}//防止ctrl+C
document.body.oncopy = function (){return false;} //阻止复制
</script>
<script> document.body.onselectstart=document.body.oncontextmenu=function(){return false;};</script>