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