很多站长咨询如何防止别人复制自己的文章,今天小编为大家分享一下WordPress主题开发页面禁止右键禁止F12教程
WordPress主题开发页面禁止右键禁止F12教程 (https://www.wpzt.net/) WordPress开发教程 第1张
今天给大家一段网页禁止右键和F12的js。

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;');