js禁止复制文本禁止F12
<script>
document.oncontextmenu=new Function("event.returnValue=false");
document.onselectstart=new Function("event.returnValue=false");
var threshold = 160;
window.setInterval(function() {
if (window.outerWidth - window.innerWidth > threshold ||
window.outerHeight - window.innerHeight > threshold) {
javascript:window.opener=null;window.open('','_self');window.close();
}
}, 1e3);
</script>