网页上图片禁止下载

来源:互联网 发布:网络销售平台合作协议 编辑:程序博客网 时间:2024/05/01 03:49
 

禁止复制,鼠标拖动选取
引用内容
<body ondragstart=window.event.returnValue=false oncontextmenu=window.event.returnValue=false 
onselectstart=event.returnValue=false>

消除ie6自动出现的图像工具栏,设置 GALLERYIMG属性为false或no .
引用内容
<IMG SRC="mypicture.jpg" HEIGHT="100px" WIDTH="100px" GALLERYIMG="no"> 

禁止页面正文内容被选取
引用内容
<body oncontextmenu="return false" ondragstart="return false" onselectstart =
"return false" onselect="document.selection.empty()" oncopy="document.selection.
empty()" onbeforecopy="return false"onmouseup="document.selection.empty()"> 

不能点右键,不用CTRL+A,不能复制作!
引用内容
<body oncontextmenu="window.event.returnValue=false" 
onkeypress="window.event.returnValue=false" 
onkeydown="window.event.returnValue=false" 
onkeyup="window.event.returnValue=false" 
ondragstart="window.event.returnValue=false" 
onselectstart="event.returnValue=false"> 
</body> 

原创粉丝点击