如何防止“右键保存图片”,有什么方法,教教我?
- 提问者网友:呐年旧曙光
- 2021-04-12 20:01
- 五星知识达人网友:孤独的牧羊人
- 2021-04-12 21:23
没办法的事
别人能看到就有办法保存下来
除非你加密相册不给看
- 1楼网友:鱼忧
- 2021-04-13 00:48
放这些代码的前提是你有修改源码的权限
body部分需要设置的属性 body onselectstart="return false"; onpaste="return false"
下面的部分放在<body></body>即可
<script language="JavaScript"> <!-- function key(){ if(event.shiftKey){ window.close();} //禁止Shift if(event.altKey){ window.close();} //禁止Alt if(event.ctrlKey){ window.close();} //禁止Ctrl return false;} document.onkeydown=key; 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>
- 2楼网友:逃夭
- 2021-04-13 00:29
- 3楼网友:大漠
- 2021-04-12 23:44
- 4楼网友:玩世
- 2021-04-12 22:54
没用
有个锁定右键的代码 但是你锁定了之后别人只要截图你的图片还是会别人拷贝走的 !!!~~~