WordPress主题开发页面禁止右键禁止F12教程
很多站长咨询如何防止别人复制自己的文章,今天小编为大家分享一下WordPress主题开发页面禁止右键禁止F12…
很多站长咨询如何防止别人复制自己的文章,今天小编为大家分享一下WordPress主题开发页面禁止右键禁止F12教程。
今天给大家一段网页禁止右键和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>
类别:WordPress入门、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!