- 相關(guān)推薦
PHP經(jīng)典常用特效類代碼
PHP最初是由勒多夫在1995年開始開發(fā)的;現(xiàn)在PHP的標準由the PHP Group維護。PHP以PHP License作為許可協(xié)議,不過因為這個協(xié)議限制了PHP名稱的使用,所以和開放源代碼許可協(xié)議GPL不兼容。下面是小編為大家?guī)淼腜HP經(jīng)典常用特效類代碼,歡迎閱讀。
PHP經(jīng)典常用特效類代碼
1.主頁遙控器
文件一.(t1.html)
。糞CRIPT 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>
。糰 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>
。糱ody>
。約cript>
jx165ad();
</script>
【PHP經(jīng)典常用特效類代碼】相關(guān)文章:
PHP實用的代碼實例08-12
PHP調(diào)用的C代碼08-05
php語言字典代碼06-08
PHP源代碼方式詳解08-08
php下載代碼怎么寫07-13
PHP調(diào)用C代碼的方法11-02
實用的PHP實例代碼20個06-11