iframe跨域传值

2019-05-14  本文已影响0人  _undefined

parent 页面 localhost:8080

<iframe src="http://localhost:8081"></iframe>

<script>
// window.addEventListener("message", function(event) {
//     console.log('child', event.data)
// })
$(window).on('message', function(event) {
    console.log('child', event.originalEvent.data)
})
</script>

child 页面 localhost:8081

<script>
window.top.postMessage({
    msg: 'hello world'
}, '*')
</script>

https://developer.mozilla.org/zh-CN/docs/Web/API/Window/postMessage

上一篇 下一篇

猜你喜欢

热点阅读