保护您的网页内容。如果您希望用户不要为了个人目的复制网页中的内容或信息,以下是简单的JavaScript代码,可禁用复制和粘贴,并禁用您网页上的鼠标右键点击功能。
禁止从网页复制和粘贴功能
复制以下代码片段,然后 head tags
在您的网页中添加以禁用您的网页的复制功能。
<script type="text/JavaScript">
function killCopy(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=killCopy
document.onclick=reEnable
}
</script>
这是一个简单的代码,将阻止您的访问者通过鼠标右键单击查看您的源代码。请记住,如果有人真的想查看您可以使用的源代码,因为还有其他方法可以。head tags
在您的网页之前添加以下代码。
<script language=JavaScript>
var message="Right key disabled!";
function clickforIE(){
if (event.button==2){
alert(message); return false;
}
}
function clickOthers(e){
if (document.layers||document.getElementById&&!document.all)
{
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickOthers;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickforIE;
}
document.oncontextmenu=new Function("alert(message);return false")
</script>
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/260974.html