如何实现禁止网页复制?网页禁止复制的代码是什么?
禁止网页被复制有几种办法,可以禁止右键,也可以禁止选择、粘贴等来实现。wordpress网站可以安装插件实现,也可以编写代码实现。
下面教大家如何实现禁止网页复制。
方法一:修改<body>标记
在<body>标记增加oncopy = "return false"标记即可,即:<body oncopy = "return false"> 。这种情况下,可以选择,但是不能复制。
方法二:JavaScript实现
<!-- 以下是我添加的禁止复制代码 -->
<script language="JavaScript">
document.oncontextmenu=new Function("event.returnValue=false;"); //禁止右键功能,单击右键将无任何反应
document.onselectstart=new Function("event.returnValue=false;"); //禁止先择,也就是无法复制
</script>
<!-- 以上是我添加的禁止复制代码 -->
将这段代码可添加到wordpress网站的底部文件(footer.php)。
下面更有防止复制JS方法,一并贴出来。
1.防止复制的js:
<SCRIPT language=JavaScript1.2>
function disableselect(e){
return false}
function reEnable(){return true
}
file://if IE4+
document.onselectstart=new Function ("return false")
file://if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</SCRIPT>
<SCRIPT language=JavaScript type=text/JavaScript>
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</SCRIPT>
2.防止下载的js:
<noscript><iframe src=""></iframe></noscript>
3. 防止右键的js:
<script language="JavaScript">
<!--
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
//-->
</script>
原创网站都用此方法测试一下吧。