首页 > 语言 > JavaScript > 正文

JavaScript操作cookie类实例

2024-05-06 16:17:51
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JavaScript操作cookie类,实例分析了javascript针对cookie的设置、读取、删除等常用技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了JavaScript操作cookie类。分享给大家供大家参考。具体如下:

用法:

一、设置cookie

 

 
  1. var cookie = new JSCookie(); 
  2. // 普通设置 
  3. cookie .SetCookie("key1","val1"); 
  4. // 过期时间为一年 
  5. var expire_time = new Date(); 
  6. expire_time.setFullYear(expire_time.getFullYear() + 1); 
  7. cookie .SetCookie("key2","val2",expire_time); 
  8. // 设置域及路径,带过期时间 
  9. cookie .SetCookie("key3","val3",expire_time,".cnblogs.com","/"); 
  10. // 设置带子键的cookie,子键分别是k1,k2,k3 
  11. cookie .SetCookie("key4","k1=1&k2=2&k3=3"); 

二、读取cookie

 

 
  1. // 简单获取 
  2. cookie .GetCookie("key1"); 
  3. cookie .GetCookie("key2"); 
  4. cookie .GetCookie("key3"); 
  5. cookie .GetCookie("key4"); 
  6. // 获取key4的子键k1值 
  7. cookie .GetChild("key4","k1"); 

三、删除

 

 
  1. cookie .Expire("key1"); 
  2. cookie .Expire("key2"); 
  3. cookie .Expire("key3"); 
  4. cookie .Expire("key4"); 

示例:

 

 
  1. <script type="text/javascript"
  2. String.prototype.Trim = function() 
  3. return this.replace(/^/s+/g,"").replace(//s+$/g,""); 
  4. function JSCookie() 
  5. this.GetCookie = function(key) 
  6. var cookie = document.cookie; 
  7. var cookieArray = cookie.split(';'); 
  8. var getvalue = ""
  9. for(var i = 0;i<cookieArray.length;i++) 
  10. if(cookieArray[i].Trim().substr(0,key.length) == key) 
  11. getvalue = cookieArray[i].Trim().substr(key.length + 1); 
  12. break
  13. return getvalue; 
  14. }; 
  15. this.GetChild = function(cookiekey,childkey) 
  16. var child = this.GetCookie(cookiekey); 
  17. var childs = child.split('&'); 
  18. var getvalue = ""
  19. for(var i = 0;i < childs.length;i++) 
  20. if(childs[i].Trim().substr(0,childkey.length) == childkey) 
  21. getvalue = childs[i].Trim().substr(childkey.length + 1); 
  22. break
  23. return getvalue; 
  24. }; 
  25. this.SetCookie = function(key,value,expire,domain,path) 
  26. var cookie = ""
  27. if(key != null && value != null
  28. cookie += key + "=" + value + ";"
  29. if(expire != null
  30. cookie += "expires=" + expire.toGMTString() + ";"
  31. if(domain != null
  32. cookie += "domain=" + domain + ";"
  33. if(path != null
  34. cookie += "path=" + path + ";"
  35. document.cookie = cookie; 
  36. }; 
  37. this.Expire = function(key) 
  38. expire_time = new Date(); 
  39. expire_time.setFullYear(expire_time.getFullYear() - 1); 
  40. var cookie = " " + key + "=e;expires=" + expire_time + ";" 
  41. document.cookie = cookie; 
  42. </script> 

至此完毕.

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选