设为首页收藏本站language 语言切换
查看: 1478|回复: 0
收起左侧

PHP程序中的特效应用 实用珍藏代码举例

[复制链接]
发表于 2010-2-24 13:40:58 | 显示全部楼层 |阅读模式
  <FONT color=#ff0000>禁止屏蔽类</FONT><>   <STRONG> 1.禁止右键</STRONG></P><>&lt;body oncontextmenu=return(false)&gt; </P><>   <STRONG> 2.禁止选择</STRONG></P><>&lt;body onselectstart="return false"&gt;</P><>  <STRONG>  3.禁止粘贴</STRONG></P><>&lt;body onpaste="return false"&gt;</P><>   <STRONG> 4.禁止直接访问 [必须框架内才行]</STRONG></P><>&lt;script&gt;<BR>if (top == self)top.location.href = "page.htm"; <BR>&lt;/script&gt;</P><>    <STRONG>5.禁止frame引用</STRONG></P><>&lt;script&gt;<BR>if (top != self)top.location.href = "page.htm"; <BR>&lt;/script&gt;</P><>    <STRONG>6.禁止功能键Shift,Alt,Ctrl</STRONG></P><>&lt;script&gt;function key(){ <BR>if(event.shiftKey) alert("Shift不允许使用!");} document.onkeydown=key; &lt;/script&gt;</P><><FONT color=#ff0000>   数据取得类</FONT></P><>    <STRONG>1.取得分辨率</STRONG><BR>&lt;script&gt;document.write("宽为"+screen.Width+"高为"+screen.Height)&lt;/script&gt;</P><><BR><STRONG>    2.取得地址栏</STRONG></P><>&lt;script&gt;document.write(self.location)&lt;/script&gt;</P><>   <STRONG> 3.取得地址栏后参数</STRONG></P><>&lt;SCRIPT&gt;var add = top.location;<BR>add = add.toString();<BR>document.write (add.substring(add.indexOf("?")+1,add.length));<BR>&lt;/SCRIPT&gt;</P><><FONT color=#ff0000>    常用特效类</FONT></P><><STRONG>    1.主页遥控器</STRONG><BR>文件一.(t1.html)<BR>&lt;SCRIPT language="JavaScript"&gt;<BR>window.open("t2.html","_blank","width=200","height=200","scroll=no");<BR>&lt;/SCRIPT&gt;<BR>文件二.(t2.html)<BR>&lt;SCRIPT language="JavaScript"&gt;<BR>function op(add){if (window.opener){window.opener.document.location = add;}}<BR>&lt;/SCRIPT&gt;<BR>&lt;a href=# onClick="op('link1.html')"&gt;地址1 &lt;/a&gt;&lt;br&gt;&lt;a href=# onClick="op('link2.html')"&gt;地址2 &lt;/a&gt;&lt;br&gt;&lt;a href=# onClick="op('http://music.jx165.com')"&gt;地址3 &lt;/a&gt;</P><><BR><STRONG>    2.只弹一次的窗口</STRONG></P><>&lt;script&gt;<BR>function get_cookie(Name) {<BR>var search = Name + "="<BR>var returnvalue = "";<BR>if (document.cookie.length &gt; 0) {offset = document.cookie.indexOf(search)<BR>    if (offset != -1) {offset += search.length;end = document.cookie.indexOf(";", offset);<BR>    if (end == -1)end = document.cookie.length;returnvalue=unescape(document.cookie.substring(offset, end))}<BR>}<BR>return returnvalue;<BR>}<BR>function jx165ad(){<BR>if (get_cookie('jx165ad')==''){<BR>document.cookie="jx165ad=yes"<BR>window.open("ad.html","_blank","width=200","height=200","scroll=no");<BR>}<BR>else {}<BR>}<BR>&lt;/script&gt;<BR>&lt;body&gt;<BR>&lt;script&gt;<BR>jx165ad();<BR>&lt;/script&gt;</P><>   <STRONG> 3.鼠标放在连接上强行点击</STRONG></P><>&lt;script&gt;  <BR>function mClk2() {var source=event.srcElement;if (source.tagName=="A"){source.click();self.focus();}}  <BR>document.write("&lt;div onmouseover=mClk2();&gt;");  <BR>&lt;/script&gt;</P>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-6 07:17 , Processed in 0.102241 second(s), 24 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表