Web browser-based local storage method application_javascript skills
When storing data on the client, we generally use cookies (insensitive data). However, as clients become increasingly rich, the amount that cookies can store (maximum 4k per domain) is really small.
There is localStorage available in HTML5, but this abandons IE8-. For compatibility, we can dig out a storage method developed by IE a long time ago:
Add a special style url (#default#userData) to an element, and then you can access the key-value pair form through setAttribute and getAttribute. of data.
One thing to note is that you need to use the save method after the data is changed, and you need to load the data in the initial stage.
Next, I will post the usage method. When the browser used supports HTML5, use localStorage.
var localStorage = (function(db) {
if (typeof db.clear == "function") {
return db;
}
var database = document.createElement("div")
database.id = "database";
database.style.behavior = "url(#default#userData)";
document.body.appendChild(database);
database.load("DataStore");
return {
setItem : function(key, val) {
database.setAttribute(key, val);
database.save("DataStore");
}
, getItem: function(key) {
return database.getAttribute(key);
}
, removeItem: function(key) {
database.removeAttribute(key);
database.save("DataStore");
}
};
} (localStorage || {}));
However, even if it is compatible, there will still be problems. For example, the information stored on IE will be obtained when it is opened through Chrome. Not here.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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

How to avoid being detected when using FiddlerEverywhere for man-in-the-middle readings When you use FiddlerEverywhere...

Solution to Redirecting 404 Errors after Simulation Login When using Selenium for Simulation Login, we often encounter some difficult problems. �...

How to implement cross-application jump for Word plug-in login authorization? When using certain Word plugins, we often encounter this scenario: click on the login in the plugin...

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

Discussion on the task status after the local computer of Jiutian Computing Power Platform is closed. Many users will encounter a question when using Jiutian Computing Power Platform for artificial intelligence training...

Problems and solutions encountered when using the requests library to crawl web page data. When using the requests library to obtain web page data, you sometimes encounter the...

This article introduces various methods to troubleshoot and fix memory leaks in Flutter applications on Debian systems. 1. Use FlutterDevTools to detect memory leaks to install DevTools: Run flutterpubglobalactivatedevtools in the terminal to install FlutterDevTools. Run the application (Profile mode): Use flutterrun--profile to run your Flutter application and enter performance analysis mode. Start DevTools: Open http://localhost:9 in the browser

"DebianStrings" is not a standard term, and its specific meaning is still unclear. This article cannot directly comment on its browser compatibility. However, if "DebianStrings" refers to a web application running on a Debian system, its browser compatibility depends on the technical architecture of the application itself. Most modern web applications are committed to cross-browser compatibility. This relies on following web standards and using well-compatible front-end technologies (such as HTML, CSS, JavaScript) and back-end technologies (such as PHP, Python, Node.js, etc.). To ensure that the application is compatible with multiple browsers, developers often need to conduct cross-browser testing and use responsiveness
