网页防止复制 下载 另存为的JS

  1.   oncontextmenu="window.event.returnvalue=false"   将彻底屏蔽鼠标右键   
  
<table   border   oncontextmenu=return(false)><td>no</table>   可用于Table   
    
  2.   
<body   onselectstart="return   false">   取消选取、防止复制   
    
  3.   onpaste="return   false"   不准粘贴   
    
  4.   oncopy="return   false;"   oncut="return   false;"   防止复制   
    
  5.   
<noscript><iframe   src=*.html></iframe></noscript>   网页将不能被另存为   
    
原文地址:https://www.cnblogs.com/sujingnan/p/1115780.html