javaScript共享sessionstorage在选项卡中
我正在使用Chrome使用JavaScript,需要在不同选项卡之间共享SessionStorage内容。
我知道我可以使用LocalStorage,但是当我打开新的Chrome窗口时,我不想获得相同的存储空间。
因此,我需要在LocalStorage和SessionStorage之间进行混合以在同一窗口的不同选项卡之间共享存储
I am using Javascript with Chrome and I need to share the sessionStorage content among different tabs.
I know that i could use localStorage but I don't want to get the same storage when I open a new Chrome window.
So I need a mix between localStorage and sessionStorage to share the storage among different tabs of the same window, but not among different Chrome windows
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在互联网上进行了一些研究,但我认为您无法实现想要的目标。这是因为您无法访问实例ID,或者,例如浏览器中的过程的PID。因此,您的客户不知道您目前正在使用哪个浏览器。您只能使cookies独特,而不是浏览器cookie。
I've done some research on the internet and I don't think you can achieve what you want. This is because you don't have access to an instance ID or, for example the PID of an process in the browser. So your client doesn't know which browser you're currently in. You can only make tab cookies unique, not browser cookies.