码迷,mamicode.com
首页 > Web开发 > 详细

js cookie

时间:2018-03-20 13:57:49      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:time   mat   match   get   etc   setcookie   class   getc   time()   

function setCookie(name, value) {
var exp = new Date();
exp.setTime(exp.getTime() + 24 * 60 * 60 * 1000);
document.cookie = name + "=" + escape(value) + ";expires=" + exp.toGMTString();
}
function getCookie(name)
{
var regExp = new RegExp("(^| )" + name + "=([^;]*)(;|$)");
var arr = document.cookie.match(regExp);
if (arr == null) {
return null;
}
return unescape(arr[2]);
}
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();
}

js cookie

标签:time   mat   match   get   etc   setcookie   class   getc   time()   

原文地址:https://www.cnblogs.com/wxc1/p/8608561.html

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