父子之间弹出的sessionStorage

发布于 2024-12-06 16:37:47 字数 330 浏览 0 评论 0原文

我有一个 HTML5 页面,我在其中存储一些数据:

 window.sessionStorage.setItem('toStore', 'hello world');

然后,我从此窗口打开一个弹出窗口:

 window.open('mobile.html', 'myPopUp');

我有一组与这两个页面关联的 Javascript 函数,我想在其中访问父级的本地存储数据使用 getItem('toStore') 调用从弹出窗口中获取页面。 这可能吗?如果是,调用语法是什么? 谢谢

I have an HTML5 page where I store some data with:

 window.sessionStorage.setItem('toStore', 'hello world');

Then, I open from this window a pop-up one with:

 window.open('mobile.html', 'myPopUp');

I have a set of Javascript functions associated to the two pages, where I want to access the local storage data of parent page from the popUp with the getItem('toStore') call.
Is that possible? If yes, what's the calling syntax?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

始于初秋 2024-12-13 16:37:47

将评论转换为答案。

window.opener.sessionStorage.setItem('toStore', 'hello world');

Converting comment to answer.

window.opener.sessionStorage.setItem('toStore', 'hello world');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文