[html5] localStorage API
// 지원 브라우저 체크하기
function testSupport()
{
if (localStorage)
return "Local Storage: Supported";
else
return "Local Storage: Unsupported";
}
// 저장하기
localStorage.setItem("key1", "value1");
localStorage["key1"] = "value1";
// 가져오기
alert(localStorage.getItem("key1"));
alert(localStorage["key1"]);
// 저장된 모든 리스트 가져오기
function listAllItems(){
for (i=0; i<=localStorage.length-1; i++)
{
key = localStorage.key(i);
val = localStorage.getItem(key);
}
}
// 삭제하기
void removeItem("key1");
// 전체 지우기
localStorage.clear();
[html5] localStorage API
'programming > html5' 카테고리의 다른 글
[html5] 강좌 htm5 기본 템플릿 (0) | 2014.02.16 |
---|---|
[html5] 강좌 htm5 시작하기 (0) | 2014.02.16 |
[html5] W3C mobileOK Checker (1) | 2012.07.02 |
[html5] ogg, webm 동영상 변환 (0) | 2012.07.01 |
[html5] html5 표준 동영상 코덱 (0) | 2012.07.01 |