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>
聲明:本站所有文章,如無(wú)特殊說(shuō)明或標(biāo)注,均為本站原創(chuàng)發(fā)布。任何個(gè)人或組織,在未征得本站同意時(shí),禁止復(fù)制、盜用、采集、發(fā)布本站內(nèi)容到任何網(wǎng)站、書籍等各類媒體平臺(tái)。如若本站內(nèi)容侵犯了原著者的合法權(quán)益,可聯(lián)系我們進(jìn)行處理。




