Parse the new features in HTML5: Local Storage and html5localstorage
Html5 local storage stores data locally through a browser.
The basic usage is as follows:
Copy the content to the clipboard using JavaScript Code
- <Script type = "text/javascript">
- LocalStorage. firstName = "Tom ";
- Alert (localStorage. firstName );
- </Script>
In this way, the data is saved locally, but in what form is the local data saved? After tracking, we found that in Chrome, data is stored as sqlite database files.
In windows, it is saved in C: \ Documents and Settings \ User Name \ Local Settings \ Application Data \ Google \ Chrome \ User Data \ Default \ Local Storage path (where User Name refers to the current User Name;
In Mac, it is stored in the/Users/User Name/Library/Application Support/Google/Chrome/Default/Local Storage path (where User Name refers to the current User Name ).
Although the suffix is. localstorege, it is actually a database file of sqlite. You can open it with sqlite and see the data in it. (You can use the SQLite Manager additional component of firefox to open it)
The steps for installing components are similar to those for installing firebug. Select the menu tool --> attachment component, open the attachment component settings page, search for the keyword "SQLite Manager", install the "SQLite Manager" plug-in, and restart firefox, you can see the "SQLite Manager" additional component in the tool, as shown in:
View the saved local data file
Below are several common localStorage methods:
1. Add localStorage
Copy XML/HTML Code to clipboard
- LocalStorage. setItem ("key", "value"); // store a value "value" with the name of "key"
2. Obtain localStorage
Copy XML/HTML Code to clipboard
- LocalStorage. getItem ("key"); // obtain the value named "key"
3. Delete localStorage
Copy XML/HTML Code to clipboard
- LocalStorage. removeItem ("key"); // delete information named "key"
4. Clear localStorage
Copy XML/HTML Code to clipboard
- LocalStorage. clear (); // clear all information in localStorage
5. view the saved localStorage
You can use the console tool Resource-Local Storage in chrome to view