프런트엔드 설정, 가져오기, 삭제
/**
* [setCookie cookie]
* @author Leo
* @param {[type]} name [ , ]
* @param {[type]} value [ , ]
* @param {[type]} exdays [ , ]
*/
function setCookie(name, value, exdays) {
let cookie = name + "=" + value + ";";
if (exdays) {
let d = new Date();
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
let expires = "expires=" + d.toGMTString();
cookie = cookie + ' ' + expires;
}
document.cookie = cookie;
}
쿠키 가져오기
/**
* [getCookie cookie]
* @author Leo
* @param {[type]} cname [ , ]
* @return {[type]} [ : ( )]
*/
function getCookie(cname) {
let name = cname + "=";
let cookie = document.cookie.split(';');
for(let i = 0, len = cookie.length; i < len; i++) {
let c = cookie[i].trim();
if (c.indexOf(name) === 0) {
return c.substring(name.length, c.length);
}
}
return "";
}
쿠키 삭제
/**
* [getCookie cookie]
* @author Leo
* @param {[type]} key[ , ]
*/
function clearCookieByKey(key) {
setCookie(key, "", -1);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
쿠키, localStorage 또는 sessionStorage?쿠키, localStorage 및 sessionStorage는 모두 클라이언트 측 저장을 위한 간단한 데이터 저장 방식입니다. 쿠키는 클라이언트 측에 저장된 간단한 데이터를 처리하는 구식 방식에 가깝습니다. HTML...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.