2 实现
2-1 JSONP 实现
2-2 nginx 配置
2-2 vue 开发中 webpack自带跨域
2 -3 下载CORS 插件 或 chrome浏览器配置跨域
2-4 通过iframe
如:aaa.com 中读取bbb.com的localStorage
1)在aaa.com的页面中,在页面中嵌入一个src为bbb.com的iframe,此时这个iframe里可以调用bbb.com的localStorage。
<iframe id="bbb-iframe" src="https://bbb.com/page1.html" style="display:none;"></iframe>
2)用postMessage方法实现页面与iframe之间的通信。