网站想要禁止别人复制内容,或者禁止别人直接浏览器右键查看源码。
在</body>前加入以下代码即可:
<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>