js禁止右键 f12 查看源码,如下:

 

<script type=”text/javascript”>
document.onkeydown=function(){

var e = window.event||arguments[0];

if(e.keyCode==123){
alert(‘你知道的太多了’);
return false;
}

if((e.ctrlKey)&&(e.shiftKey)&&(e.keyCode==73)){
alert(‘你知道的太多了’);
return false;
}
if((e.ctrlKey)&&(e.keyCode==85)){
alert(‘你知道的太多了’);
return false;
}
if((e.ctrlKey)&&(e.keyCode==83)){
alert(‘你知道的太多了’);
return false;
}
}

document.oncontextmenu=function(){
alert(‘你知道的太多了’);
return false;
}

var threshold = 160;
window.setInterval(function() {
if (window.outerWidth – window.innerWidth > threshold ||
window.outerHeight – window.innerHeight > threshold) {
function disableDebugger() {
debugger;
}
$(document).ready(function () {
disableDebugger();
});
}
}, 1e3);
</script>

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注