标签:expires com cat host domain ret str toe key
var Cookie = { get:function(key){ var reg = new RegExp(‘^‘ + key + ‘=([^;]+)(?=;|$)‘,‘gi‘); return (result = document.cookie.match(reg)) == null ? null : decodeURICompoent(result[1]); }, set:function(key,value,expireHours,path,domain,secure){ var path = path || ‘/‘, domain = domain || location.host, cookie = [key + ‘=‘ + encodeURICompoent(value),‘path=‘ + path,‘domain=‘+domain]; if(expire){ cookie.push(‘expires=‘ + this.hoursToExpire(expireHours)) } if(secure){ cookie.push(secure) } document.cookie = cookie.join(‘‘); return document.cookie; }, del:function(key){ if(this.get(key)){var expire = new Date(); expire.setTime(now.getTime() - 10000); this.set(key,‘‘,expire,path,domain); } }, hoursToExpire:function(hours){ if(parseInt(hours) == NaN){ return ‘‘; } var now = new Date(); now.setTime(now.getTime() + parseInt(hours)*60*60*1000); return now.toGMTString(); } }
标签:expires com cat host domain ret str toe key
原文地址:http://www.cnblogs.com/mengff/p/6198309.html