网页禁止被扒网页防扒站代码网页禁止复制文字代码

加入下面这段代码,可以禁止右键和左键操作,禁止复制代码,禁用CTRL+S 保存网页

<body onselectstart="return false;" oncontextmenu="alert('请尊重本网站版权!');return false;" onkeydown="if(event.keyCode==27) return false;">
<script type="text/javascript">
document.onmousedown = click;  //绑定禁用鼠标右键事件
document.onkeydown = ctrl_key; //绑定禁用键盘事件
function click() {
if (event.button == 2)      //单击的鼠标键为右键
{
alert('请尊重本网站版权!');
return false;
}
}
function ctrl_key() {
if (event.keyCode == 17) {                          //禁用CTRL+S 保存网页代码
window.alert("请尊重本网站版权!");
return false;
}
 
if (event.keyCode == 123) {                         //禁用F12查看源代码
alert('请尊重本网站版权!');
return false;
}
}
</script>
© 版权声明
THE END
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容