码迷,mamicode.com
首页 > 其他好文 > 详细

设置获取cookie,setCookie,getCookie

时间:2017-07-05 10:07:49      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:match   http   .com   date()   setcookie   pre   date   null   doc   

设置cookie:

function setCookie(name,value) 
{ 
    var Days = 30; 
    var exp = new Date(); 
    exp.setTime(exp.getTime() + Days*24*60*60*1000); 
    document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString(); 
}

读取cookie:

function getCookie(name) 
{ 
    var arr,reg=new RegExp("(^| )"+name+"=([^;]*)(;|$)"); 
   return (arr=
document.cookie.match(reg))?unescape(arr[2]):null;
}

删除cookie(将cookie设置过期即可):

function delCookie(name) 
{ 
    var exp = new Date(); 
    exp.setTime(exp.getTime() - 1); 
    var cval=getCookie(name); 
    if(cval!=null) 
        document.cookie= name + "="+cval+";expires="+exp.toGMTString(); 
}
escape(string) 函数可对字符串进行编码,这样就可以在所有的计算机上读取该字符串。
unescape(string) 函数可对通过 escape() 编码的字符串进行解码。

以上借鉴自:http://www.cnblogs.com/fishtreeyu/archive/2011/10/06/2200280.html

设置获取cookie,setCookie,getCookie

标签:match   http   .com   date()   setcookie   pre   date   null   doc   

原文地址:http://www.cnblogs.com/zmj-blog/p/7119413.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!