localStorage를 이용하여 데이터 저장/불러오기
페이지 정보
작성자 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 3,587회 작성일 16-06-24 11:42본문
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<button id="save">로컬저장소에 저장하기</button>
<button id="load">로컬저장소에서 불러오기</button>
<script type="text/javascript">
document.querySelector("#save").addEventListener("click", saveData, false);
document.querySelector("#load").addEventListener("click", loadData, false);
// 로컬저장소에 저장하기
function saveData(){
localStorage.setItem("item", "hello world");
}
// 로컬저장소에서 불러오기
function loadData(){
console.log( localStorage.getItem("item") );
}
</script>
</body>
</html>
댓글목록
등록된 댓글이 없습니다.