서버에서 request cookie로 보내면 document.cookie로 접근이 가능한데
그걸 간단하게 사용하기 위한 라이브러리
[링크 : https://hailey0.tistory.com/38]
function getCookie(cname) { let name = cname + "="; let decodedCookie = decodeURIComponent(document.cookie); let ca = decodedCookie.split(';'); for(let i = 0; i <ca.length; i++) { let c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } |
[링크 : https://www.w3schools.com/js/js_cookies.asp]
[링크 : https://nowonbun.tistory.com/634]
그나저나 document.cookie가 왜이렇게 생소하지?
'Programming > jquery' 카테고리의 다른 글
jquery ajax auth (0) | 2023.07.27 |
---|---|
jquery ajax delete가 없다? (0) | 2022.09.16 |
jquery 우클릭 가로채기 (0) | 2019.06.04 |
jquery ajax json flask (0) | 2019.01.07 |
jquery this 버튼 checked (0) | 2019.01.07 |