2005-07-14 09:59 作者:不祥 责任编辑:moningfeng
|
2.不能展开右键,不能全选,不能复制的实现 <body oncontextmenu="window.event.returnValue=false" 3.禁止页面正文内容被选取 <body oncontextmenu="return false" ondragstart="return false" 4.避免别人把网页放在框架中 <script language=“javascript”><!--if (self!=top){top.location=self.location;}-->< /script> 5.禁示查看源代码 <frameset> 6.关闭输入法 <input style="ime-mode:disabled"> 7.禁止图片下载 在<body......>这里的最后加入: oncontextmenu="return false" ondragstart="return false" onselectstart="return 8.禁止缓存 在HEAD里加入: <meta http-equiv="Expires" CONTENT="0"> |