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 からアイテムを取得できますlocalStorage.getItem(key)
が、それらを削除することはできません。