怎么清除localStorage

7,035 阅读1分钟
  • 如果要删除/清除本地存储中的所有值,使用:localStorage.clear();
  • 如果要从本地存储中删除特定项,使用:localStorage.removeItem(key);