gpt4 book ai didi

javascript - 从 localstorage javascript 中删除值

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:19:29 24 4
gpt4 key购买 nike

我试图从 javasscript 中的 localStorage 中删除项目,但它不起作用。

它仅对以下事件的顺序手动起作用

Right click --> Inspect element --> Resources --> localStorage --> Right click --> Delete 

我试过:

localStorage.clear(); 

localStorage.removeItem(key); // the key is the link of the page and 
// the value is the selected word in the page

两者都不起作用,我可以使用 localStorage.setItem(key, vaule) 保存项目并使用 localStorage.getItem(key) 从 localStorage 获取项目但是我无法删除它们。

最佳答案

你要找的是这个:

deleter void removeItem(DOMString key);

你可以这样实现:

localStorage.removeItem(key)

关于本地存储的一切都可以找到here on the W3 html5 spec for web storage.

您可能会发现这个 document more helpful as it goes into more explanation.

*本地存储不是最终规范,这些可能会发生变化。

关于javascript - 从 localstorage javascript 中删除值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14864256/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com