您现在的位置: 365建站网 > 365文章 > js脚本中cookie的使用

js脚本中cookie的使用

文章来源:365jz.com     点击数:230    更新时间:2009-10-05 21:43   参与评论

//创建一个Cookie
function writeCookie()
{
 
  var destoryTime = new Date();
 
  destoryTime.setTime(destoryTime.getTime()+24*3600*1000);

  var expireTime = destoryTime.toGMTString();

  document.cookie = "vistited=true"+";expires="+expireTime+";";

  document.write("<div id='tip'>欢迎首次光临sky论坛,5秒之后您返回论坛首页。。</div>");

  setTimeout("backToMainPage()",5000);
}

function backToMainPage()
{
  window.loaction.href = "http://bbs.blueidea.com/";
}

var isCookieExist;

IsCookieExist = doucment.cookie.length;

if(!isCookieExist)
   writeCookie();
else
{
 var cookieContent = document.cookie;

 var checkStatus = "visited=";
 
 var startIndex = cookieContent.indexOf(checkStatus);

 if(startIndex !=-1)
 {
   startIndex += checkStatus.length;
  
   var endIndex = cookieContent.indexOf(",",startIndex);
  
   if(endIndex ==-1)
  
    endIndex = cookieContent.length;
    
    var result = unescape(cookieContent.substring(startIndex,endIndex));

    if(result != "true")
       writeCookie();
       else
       document.write("<div id='tip'>欢迎再次来到本论坛</div>")
  
 }else
  writeCookie();
}

如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛

发表评论 (230人查看0条评论)
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
昵称:
最新评论
------分隔线----------------------------

快速入口

· 365软件
· 杰创官网
· 建站工具
· 网站大全

其它栏目

· 建站教程
· 365学习

业务咨询

· 技术支持
· 服务时间:9:00-18:00
365建站网二维码

Powered by 365建站网 RSS地图 HTML地图

copyright © 2013-2024 版权所有 鄂ICP备17013400号