来源:远方网络 | 2006-1-5 10:26:04 | (有2347人读过)
1。网页不能脱机浏览
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
2。文字不能被打印
<style> @media print { .notptn {display:none;} } </style> <div class="notptn">我不会被打印出来</div>
3。网页内文字不能被选种,既不能被CTRL+A,也不能被复制被粘贴。
<body ondragstart="return false" onselectstart="return false"> 或: <body oncopy="return false">
4。完全屏蔽右键
<body oncontextmenu="return false" ondragstart="return false"
onselectstart="return false">
附: 如何制作禁止查看源代码的网页
做网页的朋友都会遇到这种情况:有时自己辛苦半天做的网页,尤其是一些
JavaScript特效,很容易被人利用查看源文件而复制。那么如何才能防止被人查看源代
码呢?我们可以利用event.button特性来做到。下表是event.button属性的可能取值及
含义: 可能值 含义
0 没按键 1 按左键 2 按右键 3 按左和右键 4 按中间键 5 按左和中间键 6 按右和中间键 7 按所有的键
参照上表,我们可以在〈body〉和〈/body〉之间加入如下语句:
〈Script Langvage=javascript〉
function Click(){
if (event.button!=1){alert('捌捌肆捌-BLOG');
}}
document.onmousedown=Click;
〈/Script〉
|