<script>
document.onselectstart=new Function("event.returnValue=false");
// 禁用f12及复制
document.onselectstart=function(){return false;};
window.oncontextmenu=function(){return false;}
window.onkeydown = window.onkeyup = window.onkeypress = function (event) {
if(event.code == 'F12'){
window.event.returnValue = false;
return false;
}
}
script>
原创©本文章为孙正萌原创,未经许可,禁止转载
0条评论