不准查看源文件放在<head>中间:
<script language="JavaScript"><!--document.onmousedown=click function click() {if ( event.button==2) {alert('不准查看源文件') }if ( event.button==3) {alert('不准查看源文件') }}//--></script>
1、在网页的Head部分加入如下代码,这段代码的主要功能是屏蔽PrintScreen键,不断清空剪贴版,防止图片被用文件——另存为菜单另存。
<script language="javascript">
<!--
function testclip(){
try {
if(clipboardData.getData("Text")||clipboardData.getData("HTML")||clipboardData.getData("URL"))
{
null;
}
}
catch(e){
clipboardData.setData("Text","")
}
setTimeout("testclip()",500)
}
testclip();
//-->
</script>
2、屏蔽IE6下的图像工具条,那么可以这样做:
<img src="*.jpg" galleryimg="no">
或者
<meta http-equiv="imagetoolbar" content="no">
3、屏蔽右键功能
在<body>上加上
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">