Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将值存储在 window.localstorage.storedparameters 中。当我撤退时,我有一些问题。所以我想知道这些数据在浏览器中存储在哪里?这种存储数据是否因浏览器而异?
您可以使用 chrome 浏览器。
只需按 F12 进入开发者工具。然后转到“资源”选项卡,然后转到“本地存储”选项。您将在那里看到所有浏览器的本地存储。
window.localStorage您可以使用该对象以编程方式检索它们。要获得单个项目,要么 要么localStorage.nameOfItem将localStorage.getItem('nameOfItem')工作。
window.localStorage
localStorage.nameOfItem
localStorage.getItem('nameOfItem')