14.5 跨域 - document.domain

Posted zouxinping

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了14.5 跨域 - document.domain相关的知识,希望对你有一定的参考价值。

使用频率多:百度之间传数据也会使用

前端

a.html

<!--
实现需要满足条件:域名 一级域名二级域名
www.baidu.com
video.baidu.com
a是通过 http://b.test.com:3000/a.html 访问
-->
Hello, A
<iframe src="http://b.test.com:3000/b.html"  onload="load()" id="frame"></iframe>
<script>
  document.domain = test.com‘
  function load() {
      console.log(frame.contentWindow.a)
    }
</script>

b.html

<script>
    document.domain = test.com‘
    var a = 100
</script>

 

后端

a.js

let express = require(‘express‘)
let app  = express()
app.use(express.static(__dirname))
app.listen(3000)

b.js

let express = require(‘express‘)
let app  = express()
app.use(express.static(__dirname))
app.listen(4000)

 

以上是关于14.5 跨域 - document.domain的主要内容,如果未能解决你的问题,请参考以下文章

document.domain实现js跨域

设置document.domain实现js跨域注意点

JS跨域调用之document.domain--相同基础域名页面之间的调用

js设置document.domain实现跨域

跨域cors方法(jsonp,document.domain,document.name)及iframe性质

document.domain