JS禁止查看网页源代码的实现方法
2022-08-31 本文已影响0人
10676
直接上源码:
<script type="text/javascript">
window.onload=function(){
document.onkeydown=function(){
var e=window.event||arguments[0];
if(e.keyCode==123){
alert("小样你想干嘛?");
return false;
}else if((e.ctrlKey)&&(e.shiftKey)&&(e.keyCode==73)){
alert("还是不给你看。。");
return false;
}
};
document.oncontextmenu=function(){
alert("小样不给你看");
return false;
}
}
</script>
主要屏蔽一下三种情况
- 直接按F12
- Ctrl+Shift+I查看
- 鼠标点击右键查看