禁止复制文字和图片另存

于 2024-04-27 发布 阅读量68  

<script language="Javascript">  
document.oncontextmenu=new Function("event.returnValue=false");  
document.onselectstart=new Function("event.returnValue=false");
document.oncontextmenu = function(){
				return false;
			}  
</script>
body{
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	-khtml-user-select:none;
	user-select: none;
}