我们在上网的时候看到喜欢的文字和图片就想复制下来保存到本地硬盘中慢慢欣赏,可是有些网站为了保护自己的内容就运用了一些技术手段让我们无法复制。在有些网页中,使用鼠标拖动的方法,不能选中文字,当然也就不能复制网页中的文字。
一个更简单的方法就是在<body>中加入如下的代码,这样鼠标的左右键都失效了.
topmargin="0" oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()"
1.禁止网页另存为:在<body>后面加入以下代码:
<noscript> <iframe src="*.htm" kesrc="*.htm"></iframe> </noscrip
2.禁止网页内容复制.粘贴:在<body>中加入以下代码:
<body onmousemove=/HideMenu()/ oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">
评论列表(2条)