Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关闭浏览器后如何保存 HTML5 会话存储?这可能吗?
正如@Romin 所发布的,sessionStorage仅在选项卡打开之前是持久的。参考这个
sessionStorage
你应该看看浏览器localStorage。使用类似放大的东西将极大地帮助您编写跨浏览器应用程序。
localStorage
从您的问题中不清楚您是否看过localStorage?如果是,您应该使用它,因为 API 类似于sessionStorage并且您的数据会在浏览器重新启动时保持不变,但当然仅限于特定的域命名空间。
sessionStorage关闭浏览器后可以找回。实际上,sessionStorage它仅对特定窗口或选项卡是唯一的,因此它不仅与关闭浏览器有关,还与具有两个不同的sessionStorage属性有关。