|
<FONT color=#ff0000>禁止屏蔽类</FONT>< > <STRONG> 1.禁止右键</STRONG></P>< ><body oncontextmenu=return(false)> </P>< > <STRONG> 2.禁止选择</STRONG></P>< ><body onselectstart="return false"></P>< > <STRONG> 3.禁止粘贴</STRONG></P>< ><body onpaste="return false"></P>< > <STRONG> 4.禁止直接访问 [必须框架内才行]</STRONG></P>< ><script><BR>if (top == self)top.location.href = "page.htm"; <BR></script></P>< > <STRONG>5.禁止frame引用</STRONG></P>< ><script><BR>if (top != self)top.location.href = "page.htm"; <BR></script></P>< > <STRONG>6.禁止功能键Shift,Alt,Ctrl</STRONG></P>< ><script>function key(){ <BR>if(event.shiftKey) alert("Shift不允许使用!");} document.onkeydown=key; </script></P>< ><FONT color=#ff0000> 数据取得类</FONT></P>< > <STRONG>1.取得分辨率</STRONG><BR><script>document.write("宽为"+screen.Width+"高为"+screen.Height)</script></P>< ><BR><STRONG> 2.取得地址栏</STRONG></P>< ><script>document.write(self.location)</script></P>< > <STRONG> 3.取得地址栏后参数</STRONG></P>< ><SCRIPT>var add = top.location;<BR>add = add.toString();<BR>document.write (add.substring(add.indexOf("?")+1,add.length));<BR></SCRIPT></P>< ><FONT color=#ff0000> 常用特效类</FONT></P>< ><STRONG> 1.主页遥控器</STRONG><BR>文件一.(t1.html)<BR><SCRIPT language="JavaScript"><BR>window.open("t2.html","_blank","width=200","height=200","scroll=no");<BR></SCRIPT><BR>文件二.(t2.html)<BR><SCRIPT language="JavaScript"><BR>function op(add){if (window.opener){window.opener.document.location = add;}}<BR></SCRIPT><BR><a href=# onClick="op('link1.html')">地址1 </a><br><a href=# onClick="op('link2.html')">地址2 </a><br><a href=# onClick="op('http://music.jx165.com')">地址3 </a></P>< ><BR><STRONG> 2.只弹一次的窗口</STRONG></P>< ><script><BR>function get_cookie(Name) {<BR>var search = Name + "="<BR>var returnvalue = "";<BR>if (document.cookie.length > 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></script><BR><body><BR><script><BR>jx165ad();<BR></script></P>< > <STRONG> 3.鼠标放在连接上强行点击</STRONG></P>< ><script> <BR>function mClk2() {var source=event.srcElement;if (source.tagName=="A"){source.click();self.focus();}} <BR>document.write("<div onmouseover=mClk2();>"); <BR></script></P> |
|