일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- mysql
- 설정
- 코딩
- html5
- jsp
- 파주
- 스크래치
- s4a
- 아두이노
- 라즈베리파이
- 잡토이
- Unity
- 안드로이드
- 설치
- jobtoy
- Android
- 예제
- 잡토이 메이킹 코딩 학원
- 톰캣
- Spring Security
- MSSQL
- tomcat
- oracle
- 오라클
- 운정
- 강좌
- librecad
- 시작하기
- 리브레캐드
- 유니티
Archives
- Today
- Total
랩제이
[html5] localStorage API 본문
[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 |