设计之家 > 教程 > 網頁教程 > 其他教程 >

同一IP只彈出一次窗口的特效代碼

作者:未知 來源:本站原創 時間:2006-03-02

<!-- 把下列代碼加到BODY中 -->

<script>
  var cookieString = new String(documents.cookie)
  var cookieHeader = 'happy_pop' //更換happy_pop為任意名稱
  var beginPosition = cookieString.indexOf(cookieHeader)
  if (beginPosition <0){
window.open('http://www.artcn.cn/','','top=0,left=0,width=787,height=480,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes');
var Then = new Date()    
   Then .setTime(Then.getTime() + 12*60*60*1000 ) //同一ip設置過期時間,即多長間隔跳出一次
   documents.cookie = 'happy_pop=yes;expires='+ Then.toGMTString()  //更換happy_pop和第4行一樣的名稱
    }//more javascript from http://www.sj33.cn/
</script>

标签:

相關文章:

推薦設計

最新文章