localStorage 사용법

브라우져상에서 정보를 간단히 저장해서 사용해야할 떄 유용하게 사용할 수 있는 localStorage

(ex: 필드 목록 저장이라던가, 창이 닫히기 전에 데이터를 저장해야한다거나 할때..)


사용법

1
2
3
4
5
6
7
8
// 사용법 
var storage = localStorage;
 
storage.setItem('item','value');
 
storage.getItem('item'); // value
 
storage.item; // value
cs


지원브라우져 목록



아래는 실제로 선언하고 삭제하는 샘플 예제

JS Bin on jsbin.com