# 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、CORS跨域资源共享

# 3、http proxy

# 4、nginx反向代理

# 5、postMessage

iframe之间通信。

# 6、websocket

# 7、window.name+ifame

iframe之间通信。

# 8、document.domain+iframe

只能实现一个主域和不同子域之间的通信。

Last Updated: 6/17/2021, 12:14:30 AM