| 
 第一、禁止使用右键 A - JS禁止右键(加入网页中) <script language="Javascript"> 
document.oncontextmenu=new Function("event.returnValue=false"); 
document.onselectstart=new Function("event.returnValue=false"); 
</script> 
 B - 非JS效果(加入到BODY中) <body> 
 第二、禁止复制 <body> 
 同样在BODY中修改。 第三、禁止下载 <noscript> 
<iframe src="*.htm"></iframe> 
</noscript> 
 在</body>代码之前加上。 这样,我们就实现到页面的禁止右键、复制、下载页面。  |