夏金
禁止F12元素审查
很多时候我们辛辛苦苦弄的代码被很多人按一个F12直接白嫖走了,感觉自己的付出被白嫖是不是非常的伤心、郁闷,甚至是气愤、愤怒。 删除线效果 下面和大家介绍一种方式。
直接在页脚文件foot.php或者footer.php最下方放入以下代码:
<script>
function fuckyou(){
window.close(); //关闭当前窗口(防抽)
window.location="about:blank"; //将当前窗口跳转置空白页
}
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert("禁止恶意拿代码的");
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
fuckyou();
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")
document.onkeydown =document.onkeyup = document.onkeypress=function(){
if(window.event.keyCode == 123) {
fuckyou();
window.event.returnValue=false;
return(false);
}
}
</script>
爱微云博客 - 致力于打造一个分享技术网
https://blog.rr11.cn/index.php/archives/243/(转载时请注明本文出处及文章链接)