WordPress主題開發(fā)頁面禁止右鍵禁止F12教程
很多站長咨詢?nèi)绾畏乐箘e人復(fù)制自己的文章,今天小編為大家分享一下WordPress主題開發(fā)頁面禁止右鍵禁止F12教程。
今天給大家一段網(wǎng)頁禁止右鍵和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;');