<body oncontextmenu=self.event.returnValue=falseonselectstart="return false">
二、禁止“另存为”命令
在目标网页末尾“</BODY></HTML>”的标签前面加上加入如下代码,可以使“另存为”命令不能顺利执行。
<noscript>
<iframe scr="*.htm"></iframe>
</noscript>
加入上述代码后,当执行“另存为”命令时,会弹出“保存网页时出错”的对话框。
三、不用js也可以控制禁止右键!方法:
<body oncontextmenu="return false"></body>
<!--禁用右键:-->
<script>
functionstop(){
returnfalse
}
document.oncontextmenu=stop
</script>
<body onselectstart="return false">取消选取、防止复制
oncopy="return false"oncut="return false"防止复制
四:禁止查看源文件
<html>
<head>
<script>
functionclear(){
Source=document.body.firstChild.data
document.open()
document.close()
document.title="看不到源代码"
document.body.innerHTML=Source
}</script>
</head>
1、打开一个IE的浏览器的功能,进入到一个网页的页面上,在左上角的位置,点击“文件”选项的功能。
2、在弹出下拉菜单中,然后点击“另存为”的选项功能。
3、在保存到电脑时候,对保存类型进行修改,修改为“网页,全部(*.htm*.html)”,这样就可以把网页全部网页内容保存下来,包括图片,js等内容,
4、保存的图片会直接保存在文件夹内,也有其它的内容。