[TIL] localStorage

Captainjack·2021년 12월 27일
0

TIL

목록 보기
115/258

html 문서간 데이터를 전달 하기 위해서 localStorage 사용

json 형태

// 데이터 만드는 쪽
var cast = {
    "title" : "test",
    "contents" : "2123",
};

localStorage.setItem("cast", JSON.stringify(cast));

 
// 받는 쪽

JSON.parse(localStorage.getItem("cast"));

출처

https://kgu0724.tistory.com/229

profile
til' CTF WIN

0개의 댓글