/**
* @author 李昊哲
* @version 1.1.0
* @since 1.1.0
*/
/**
* 设置完整cookie参数
* @param {*} name cookie key
* @param {*} value cookie value
* @param {*} hours 过期时长 单位小时
* @param {*} path 存放路径
* @param {*} domain 存放域名
* @param {*} Secure 是否设置https加密
* @param {*} HttpOnly 时候http只读
*/
function setFullCookie(name, value, hours, path, domain, Secure, HttpOnly) {
var cdata = name + "=" + value;
if (hours) {
var d = new Date();
d.setHours(d.getHours() + hours);
// cdata += "; expires=" + d.toGMTString();
cdata += "; expires=" + d;
}
cdata += path ? ("; path=" + path) : "";
cdata += domain ? ("; domain=" + domain) : "";
// 如果一个cookie被设置了Secure=true,那么这个cookie只能用https协议发送给服务器
cdata += Secure ? ("; Secure=" + Secure) : false;
// 设置HttpOnly=true的cookie不能被js获取到,无法用document.cookie打出cookie的内容。
cdata += HttpOnly ? ("; HttpOnly=" + HttpOnly) : false;
document.cookie = cdata;
}
/**
* 设置cookie
* @param {*} key cookie key
* @param {*} value cookie value
* @param {*} expiresDay 过期时长 单位天
*/
function setCookieWithDay(key, value, expiresDay) {
var date = new Date();
// 设置过期时间
date.setDate(date.getDate() + expiresDay);
// 讲过期时间转为格林威治时间字符串
// var d = date.toGMTString();
document.cookie = key + '=' + value + '; expires=' + date;
}
/**
* 设置cookie
* @param {*} key cookie key
* @param {*} value cookie value
* @param {*} expiresTime 过期时长 单位毫秒
*/
function setCookieWithTime(key, value, expiresTime) {
var date = new Date();
// 设置过期时间
date.setTime(date.getTime() + expiresTime);
// 讲过期时间转为格林威治时间字符串
// var d = date.toGMTString();
document.cookie = key + '=' + value + '; expires=' + date;
}
/**
* 读取cookie
* @param {*} name 根据name读取该name对应cookie的value值
* @returns name对应cookie的value值
*/
function getCookie(name) {
let reg = eval("/(?:^|;\\s*)" + name + "=([^=]+)(?:;|$)/");
return reg.test(document.cookie) ? RegExp.$1 : "";
}
/**
* 移除cookie
* @param {*} name cookie key
* @param {*} path cookie存放路径
* @param {*} domain cookie存放域名
*/
function removeFullCookie(name, path, domain) {
setCookie(name, "", -1, path, domain);
}
/**
* 移除cookie
* @param {*} key cookie key
*/
function removeCookie(key) {
setCookie(key, null, -1);
}