禁止图片另存为

实现图片禁止另存为

1
2
3
4
5
6
7
8
9
<script type="text/javascript" >
function stop(){
return false;
}
document.onkeydown = stop;
document.onselectstart = stop;
document.onmousedown = stop;
document.oncontextmenu=stop;
</script>

将以上代码加入之间