How to use web storage to save data locally with HTML5
The main difference between localStorage and sessionStorage is data persistence: localStorage's data is persistent unless manually cleared, while sessionStorage's data is only valid during the current session and is cleared after closing the tab or browser; both store key-value pairs in string form, and objects or arrays can be stored and read through JSON.stringify() and JSON.parse() methods; typical application scenarios include saving user preferences (such as topic settings) using localStorage, or using sessionStorage to achieve automatic recovery of form drafts; when using browser support, avoid storing sensitive information to prevent XSS attacks, and ensure that values that may be null are safely parsed, thereby achieving lightweight data persistence on the client.

Web Storage is a feature in HTML5 that allows you to store data directly in the user's browser. Unlike cookies, it's easier to use, has a larger storage capacity (typically 5–10 MB), and doesn't get sent with every HTTP request. There are two main types: localStorage and sessionStorage . Here's how to use them effectively.
What's the difference between localStorage and sessionStorage?
- localStorage : Data persists even after the browser is closed. It stays until explicitly cleared.
- sessionStorage : Data is only available for the duration of the page session. It's cleared when the tab or browser is closed.
Both store data as key-value pairs, and only support strings. But with a little extra work, you can save more complex data like objects or arrays.
How to save and retrieve data
Basic operations
You can use simple methods to interact with web storage:
// Save data localStorage.setItem('username', 'john_doe'); sessionStorage.setItem('tempNote', 'Buy groceries'); // Retrieve data const user = localStorage.getItem('username'); const note = sessionStorage.getItem('tempNote'); // Remove data localStorage.removeItem('username'); sessionStorage.removeItem('tempNote'); // Clear all data localStorage.clear(); sessionStorage.clear();
These methods are straightforward and work well for simple strings.
Storing objects or arrays
Since web storage only handles strings, you need to convert objects or arrays using JSON.stringify() and JSON.parse() .
// Save an object
const user = { name: 'Alice', age: 30 };
localStorage.setItem('user', JSON.stringify(user));
// Retrieve and parse
const storedUser = JSON.parse(localStorage.getItem('user'));
console.log(storedUser.name); // Output: Alice
// Save an array
const tasks = ['Read docs', 'Write code', 'Test app'];
localStorage.setItem('tasks', JSON.stringify(tasks));
// Retrieve array
const storedTasks = JSON.parse(localStorage.getItem('tasks')); Always wrap JSON.parse() in a check, in case the value is null:
const storedUser = localStorage.getItem('user'); const user = storedUser ? JSON.parse(storedUser) : null;
Practical use cases and tips
User preferences : Save theme settings, language, or layout choices.
localStorage.setItem('theme', 'dark');
Form recovery : Use
sessionStorageto save form input as the user types.document.getElementById('message').addEventListener('input', function(e) { sessionStorage.setItem('draft', e.target.value); });Then restore it:
const draft = sessionStorage.getItem('draft'); if (draft) document.getElementById('message').value = draft;
Check for availability : Always verify that web storage is supported and accessible (eg, some browsers block it in private mode).
function isStorageAvailable(type) { try { const storage = window[type]; const x = '__storage_test__'; storage.setItem(x, x); storage.removeItem(x); return true; } catch (e) { return false; } } if (isStorageAvailable('localStorage')) { // Safe to use localStorage }
Limitations and considerations
- Storage limits : While generous, exceeding them can cause errors.
- Security : Never store sensitive data like passwords or tokens—web storage is accessible via JavaScript, making it vulnerable to XSS attacks.
- Scope : Data is tied to the origin (protocol, domain, port). One site can't access another's stored data.
- Synchronous : Operations block the main thread, but for small data, this isn't an issue.
Using web storage is simple and effective for client-side persistence. Stick to
localStoragefor long-term data andsessionStoragefor temporary, session-specific info. Just remember to serialize non-string data and handle edge cases gracefully.Basically, it's a lightweight way to make your web apps remember things—without needing a server.
The above is the detailed content of How to use web storage to save data locally with HTML5. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undress AI Tool
Undress images for free
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undresser.AI Undress
AI-powered app for creating realistic nude photos
ArtGPT
AI image generator for creative art from text prompts.
Stock Market GPT
AI powered investment research for smarter decisions
Hot Article
Popular tool
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
20516
7
13630
4
How to detect if a browser supports HTML5 features? (Modernizr)
Mar 04, 2026 am 03:11 AM
The main reason for the failure of Modernizr detection is that the script is not successfully loaded or executed at an improper time. It is necessary to ensure that it is loaded synchronously, avoids CSP interception, and is executed before DOM construction. As an alternative, it is preferable to use CSS@supports and native API to detect empty scripts.
How to use the template tag for dynamic content in HTML5? (Cloning nodes)
Mar 05, 2026 am 02:15 AM
The template tag itself does not render and must be manually cloned and inserted. Template is a lazy container of HTML5. The browser will parse it but completely skip rendering and script execution. If you write Hello directly, nothing will appear on the page - this is not a bug, it is the design. To make it "alive", you must use JavaScript to extract the content, clone it, and then hang it on the DOM. A common mistake is to directly obtain document.querySelector('template').content and then try to appendChild. The result is an error or no response: because the content is a Docu
How to make a phone number clickable in HTML5? (Tel link)
Mar 05, 2026 am 02:29 AM
The correct way to write it is href="tel: 8613812345678". All non-numeric characters need to be cleared (only and numbers are retained). Mainland China numbers must be prefixed with 86. Extension numbers use;ext= format, and target="_blank" is disabled.
How to disable autocomplete on input fields in HTML5? (Form attributes)
Mar 05, 2026 am 02:31 AM
Autocomplete="off" sometimes does not take effect because modern browsers (such as Chrome ≥ 80) actively ignore it to ensure the password manager experience; to be truly effective, it needs to be combined with strategies such as semantic values (such as new-password), avoiding sensitive names, and dynamically generated attributes.
How to create a progress bar for file uploads in HTML5? (Progress tag)
Mar 06, 2026 am 02:22 AM
Why can't the tag directly display the upload progress? It is a read-only visual component. It does not listen to network requests and is not automatically bound to the upload process of XMLHttpRequest or fetch. If you put it in and don't update the value manually, it will always stop at 0%. What really drives it is the event monitoring in the upload logic you write yourself. A common mistake is to only monitor onload (upload completed) but miss upload.onprogress. XMLHttpRequest (not fetch) must be used to obtain real-time upload progress, because fetch does not expose the max attribute of the event in the upload phase and must be set to the file size (file.size
How to create a tooltip using only HTML5? (Title attribute)
Mar 06, 2026 am 12:23 AM
The title attribute is not a tooltip component, but an accessibility prompt mechanism implemented by the browser. The behavior, style, and interaction are uncontrollable and are only suitable for simple scenarios such as pure information supplement.
How to center an image vertically in HTML5? (Layout techniques)
Mar 07, 2026 am 02:05 AM
Flexbox is the most stable for centered images. The key is to set display:flex and align-items:center in the parent container and specify the height; using place-items:center for Grid is more concise; absolute positioning requires top:50% with transform:translateY(-50%); vertical-align is invalid for block-level centering.
How to insert a copyright symbol in HTML5? (Character entities)
Mar 05, 2026 am 02:57 AM
© and © have the same effect. The former is a named entity and is easy to read, while the latter is a decimal digital entity and has more stable compatibility. It is necessary to avoid the problems of CSS hiding, JS unescapement and missing semantics.





