网站建设网页设计制作如何防止别人右键复制自己网站的内容
具体实现方法就是在网站的<head>标签里加上一段JS代码,这样当别人在我们做网站上使用右键时,就会提示“不能复制”。
<SCRIPT language=JavaScript> function click() { alert('大连酷网科技提醒,谢绝复制!')} function clickl(){ if (event.button==2){alert('请谅解!')}} function ctrlkeydown(){ if (event.ctrlkey) {alert('本网站禁止复制!')}} document.onkeydown=ctrlkeydown; document.onselectstart=click; document.onmousedown=clickl; </script>
上面的代码就可以防止别人在我们的网站上使用右键复制了,如果你想禁止左键选择同时防右键复制,可以使用下面的代码:
<!--
//屏蔽左键文本选择
document.onmousedown = function() {
return false;
};
document.onselectstart = function() {
return false;
};
//屏蔽右键
if (window.Event)
document.captureEvents(Event.MOUSEUP);
function nocontextmenu()
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e)
{
if (window.Event)
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
(编辑:小酷)