| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 안드로이드
- 시작하기
- 예제
- oracle
- 라즈베리파이
- 운정
- 톰캣
- Spring Security
- 아두이노
- 파주
- jsp
- librecad
- tomcat
- 잡토이 메이킹 코딩 학원
- 오라클
- mysql
- 설정
- 잡토이
- 설치
- 유니티
- 강좌
- 리브레캐드
- 코딩
- jobtoy
- Android
- 스크래치
- MSSQL
- Unity
- s4a
- html5
Archives
- Today
- Total
목록localStorage (1)
랩제이
[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
programming/html5
2012. 7. 9. 11:50