# 1、jsonp
- script
- img
- link
- iframe
function createScript(src){
const script=document.createElement('script');
script.src=src+"?callback=func";
}
function func(data){
console.log(data);
}
1
2
3
4
5
6
7
2
3
4
5
6
7
# 2、CORS跨域资源共享
# 3、http proxy
# 4、nginx反向代理
# 5、postMessage
iframe
之间通信。
# 6、websocket
# 7、window.name+ifame
iframe
之间通信。
# 8、document.domain+iframe
只能实现一个主域和不同子域之间的通信。