程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP經典常用特效類代碼

PHP經典常用特效類代碼

編輯:關於PHP編程

     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>

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved