ale*_*z78 4 html5 local-storage
我尝试使用Firefox 4.0来使用localStorage对象来保存一些用于填充http://host1.example.com/index.html表单的 值,并获取这些值以自动填充http: //host2.example.com/index.html但它不起作用.
相同的原始策略是否适用于URL而不是域?
不,它适用于主机.您可以document.domain在创建或检索localStorage对象之前尝试设置:
document.domain = "example.com";
Run Code Online (Sandbox Code Playgroud)
- 编辑
好的,虽然你可以设置document.domain它没有影响localStorage.可以使用iframe和交叉文档消息传递来破解解决方案:跨域localStorage