我正在尝试从JavaScript 中的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 获取项目,localStorage.getItem(key)
但我无法删除它们。