关于如何防止别人偷到自己的文章,自己的wordpress主题源码等等方法,数不胜数,然而防不胜防。
其实,别人要想搞你,怎么都能搞到。没什么卵用。
今天给大家一段,防君子不防小人的网页禁止右键和F12的js
<script language=javascript>
function stop(){
clear();
return false;
}
document.oncontextmenu=stop;
function clear(){
window.location.reload();
}
document.onkeydown =document.onkeyup = document.onkeypress=function(){
clear();
return(false);
}
document.onselectstart=new Function('event.returnValue=false;');
</script>
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...