<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>
版权属于:
Ezra
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论 (0)