localStorage什么时候被浏览器清理?
关闭浏览器后,localStorage
是否会被清理?
Is localStorage
cleaned after I close my browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
关闭浏览器后,localStorage
是否会被清理?
Is localStorage
cleaned after I close my browser?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
不,默认情况下不应该清理它。如果您手动清洁它可能会被清洁。关闭浏览器后,私人/隐身浏览也会清除它。
No, it should not be cleaned by default. It might get cleaned if you cleaned it manually. Also private/inkognito browsing cleans it after you close the browser.
不,那时还没有清理干净(这有点违背了要点!)。
...除非您在某种隐私模式下浏览,在这种情况下,浏览器可能会清除它,这可能会因浏览器的实现方式而异,并且肯定会随着时间的推移而变化...因为它们都处理“私人模式”不同。
另一方面,如果您想要清除它,有一个方法:
localStorage.clear()
No, it's not cleaned then (that would kind of defeat the point!).
...unless you're browsing in some sort of privacy mode, in which case the browser may clear it, this may vary by browser as to how it's implemented,and certainly will vary over time...since they all handle the "private mode" differently.
On the other hand if you want to clear it, there is a method:
localStorage.clear()