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