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