2005-11-27 22:51:21 by: h4x0r
body代码
在里加入就可以了,如下
<body oncontextmenu="return false">
----这样可以彻底禁止左右键~`
如果禁止用鼠标选择和复制,则加上
onselectstart="return false"
即是<body oncontextmenu="return false" onselectstart="return false">
如果禁止人家粘贴则加上
onpaste="return false"
即<body oncontextmenu="return false" onpaste="return false" >
六、方法集锦
1. oncontextmenu="window.event.returnvalue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标
6. <link rel="Bookmark" href="favicon.ico"> 可以在收藏夹中显示出你的图标
7. <input style="ime-mode:disabled"> 关闭输入法
8. 永远都会带着框架
<script language="javascript"><!--
if (window == top)top.location.href = "frames.htm"; //frames.htm为框架网页
// -->
9. 防止被人frame
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
10. <noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
Comments Feed: http://www.4evil.org/feed.asp?q=comment&id=205
<body oncontextmenu="return false">
----这样可以彻底禁止左右键~`
如果禁止用鼠标选择和复制,则加上
onselectstart="return false"
即是<body oncontextmenu="return false" onselectstart="return false">
如果禁止人家粘贴则加上
onpaste="return false"
即<body oncontextmenu="return false" onpaste="return false" >
六、方法集锦
1. oncontextmenu="window.event.returnvalue=false" 将彻底屏蔽鼠标右键
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制
3. onpaste="return false" 不准粘贴
4. oncopy="return false;" oncut="return false;" 防止复制
5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址栏前换成自己的图标
6. <link rel="Bookmark" href="favicon.ico"> 可以在收藏夹中显示出你的图标
7. <input style="ime-mode:disabled"> 关闭输入法
8. 永远都会带着框架
<script language="javascript"><!--
if (window == top)top.location.href = "frames.htm"; //frames.htm为框架网页
// -->
9. 防止被人frame
<SCRIPT LANGUAGE=javascript><!--
if (top.location != self.location)top.location=self.location;
// --></SCRIPT>
10. <noscript><iframe src=*.html></iframe></noscript> 网页将不能被另存为
Comments Feed: http://www.4evil.org/feed.asp?q=comment&id=205
There is no comment on this article.








