Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

HTML5로 된 클라이언트 측 브라우저 데이터베이스가 필요합니다. 내 옵션은 무엇입니까?

<시간/>

이를 위해 HTML5에서 로컬 저장소를 사용할 수 있습니다. 로컬 저장소는 여러 창에 걸쳐 있고 현재 세션 이후에 지속되는 저장소를 위해 설계되었습니다. 특히, 웹 애플리케이션은 성능상의 이유로 전체 사용자 작성 문서 또는 사용자의 사서함과 같은 메가바이트의 사용자 데이터를 클라이언트 측에 저장하기를 원할 수 있습니다.

<!DOCTYPE HTML>
<html>
   <body>
      <script>
         if( localStorage.hits ){
            localStorage.hits = Number(localStorage.hits) +1;
         } else{
            localStorage.hits = 1;
         }
         document.write("Total Hits :" + localStorage.hits );
      </script>
      <p>Refresh the page to increase number of hits.</p>
      <p>Close the window and open it again and check the result.</p>
   </body>
</html