禁止屏蔽類
1.禁止右鍵
<body oncontextmenu=return(false)>
2.禁止選擇
<body onselectstart="return false">
3.禁止粘貼
<body onpaste="return false">
4.禁止直接訪問 [必須框架內才行]
<script>
if (top == self)top.location.href = "page.htm";
</script>
5.禁止frame引用
<script>
if (top != self)top.location.href = "page.htm";
</script>
6.禁止功能鍵shift,alt,ctrl
<script>function key(){
if(event.shiftkey) alert("shift不允許使用!");} document.onkeydown=key; </script>
數據取得類
1.取得分辨率
<script>document.write("寬為"+screen.width+"高為"+screen.height)</script>
2.取得地址欄
<script>document.write(self.location)</script>
3.取得地址欄后參數
<script>var add = top.location;
add = add.tostring();
document.write (add.substring(add.indexof("?")+1,add.length));
</script>
常用特效類
1.主頁遙控器
文件一.(t1.html)
<script language="javascript">
window.open("t2.html","_blank","width=200","height=200","scroll=no");
</script>
文件二.(t2.html)
<script language="javascript">
function op(add){if (window.opener){window.opener.document.location = add;}}
</script>
<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>
2.只彈一次的窗口
<script>
function get_cookie(name) {
var search = name + "="
var returnvalue = "";
if (document.cookie.length > 0) {offset = document.cookie.indexof(search)
if (offset != -1) {offset += search.length;end = document.cookie.indexof(";", offset);
if (end == -1)end = document.cookie.length;returnvalue=unescape(document.cookie.substring(offset, end))}
}
return returnvalue;
}
function jx165ad(){
if (get_cookie('jx165ad')==''){
document.cookie="jx165ad=yes"
window.open("ad.html","_blank","width=200","height=200","scroll=no");
}
else {}
}
</script>
<body>
<script>
jx165ad();
</script>
3.鼠標放在連接上強行點擊
<script>
function mclk2() {var source=event.srcelement;if (source.tagname=="a"){source.click();self.focus();}}
document.write("<div onmouseover=mclk2();>");
</script>
新聞熱點
疑難解答