教程集 www.jiaochengji.com
教程集 >  脚本编程  >  javascript  >  正文 js读取与写入cookie的代码一例

js读取与写入cookie的代码一例

发布时间:2014-10-16   编辑:jiaochengji.com
为大家介绍一个读取与写入cookie的代码,有需要的朋友,可以参考下。

代码如下:

<script language="javascript">
/**
 * 读取与写入cookie值
 * by http://www.jbxue.com
*/
function writeCookie(name, value, hours){
var expire = "";
if(hours != null){
  expire = new Date((new Date()).getTime() + hours * 3600000);
  expire = "; expires=" + expire.toGMTString();
}
document.cookie = name + "=" + escape(value) + expire;
}


//读取cookie
function readCookie(name){
var cookieValue = "";
var search = name + "=";
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;
   cookieValue = unescape(document.cookie.substring(offset, end))
  }
}
return cookieValue;
}
</script>

附:IE保存COOKIES的设置
C:\Documents and Settings\你的用户名\Cookies文件夹

不过对于Win7以上的系统,这样的设置是否还管用?大家自行测试下看看。

您可能感兴趣的文章:
js读取与写入cookie的代码一例
jquery.cookie用法详细解析
js操作cookie详解
javascript cookie操作指南
深入学习Cookie
asp.net操作cookie详解
c#如何写入和读取cookie
jquery.cookie() 方法的使用(读取、写入、删除)
JavaScript静态页面间传递cookie的实现代码
c#操作cookie的实现代码

[关闭]
~ ~