l1n6yun's Blog

记录学习的技能和遇到的问题

0%

设置获取cookie,setCookie,getCookie

设置cookie

1
2
3
4
5
6
7
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

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

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

1
2
3
4
5
6
7
8
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() 编码的字符串进行解码。