父子之间弹出的sessionStorage
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将评论转换为答案。
Converting comment to answer.