HTML5中的postMessage手册如何使用
这篇文章主要介绍"HTML5中的postMessage手册如何使用"的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇"HTML5中的postMessage手册如何使用"文章能帮助大家解决问题。
我们在码代码的时候,经常会碰到以下跨域的情况:
1、页面内嵌套iframe,与iframe的消息传递
2、页面与多个页面之间的传递消息
针对这些令人头疼的跨域问题,html5特地推出新功能--postMessage
(跨文档消息传输)。postMessage 在使用时,需要传入2个参数,data
和originUrl
。data
是指需要传递的内容,但是部分浏览器只能处理字符串参数,所以我们一般把data
序列化一下,即JSON.stringify()
,originUrl
是指目标url
,指定的窗口。
下面直接甩例子,相信大家更容易理解写。
1、页面内嵌套iframe
父页面:
html:
hello word postMessage
js:
_window.onload=function(){ window.frames[0].postMessage('postMessage','http://127.0.0.1:8082/index2.html')} window.addEventListener('message',function(e){ console.log(e) document.getElementById('parent').style.color=e.data})
子页面:
html:
js:
window.addEventListener('message',function(e){ console.log(e) let color = document.getElementById('button').style.color window.parent.postMessage(color,'http://127.0.0.1:8081/index.html')});function changeColor(){ let buttonColor = document.getElementById('button').style.color buttonColor='#f00' window.parent.postMessage(buttonColor,'http://127.0.0.1:8081/index.html')}
父页面通过postMessage
的方法向iframe
传递消息,而子页面通过window.addEventListener
监听message
方法来获取到父页面传递的值。如下图所示,data
是父页面传递的值。
子页面向父页面传递消息,也是通过postMessage
的方法去传递消息,不是过是以window.parent.postMessage(data,url)
的方式传值。父页面获取值也是同样监听message事件。
2、多页面之间传递消息
父页面:
html:
hello word postMessage
js:
let parent = document.getElementById('parent')function postMessage(){ let windowOpen=window.open('http://127.0.0.1:8082/index2.html','postMessage') setTimeout(function(){ windowOpen.postMessage('postMessageData','http://127.0.0.1:8082/index2.html') },1000) }
子页面:
html:
js:
window.addEventListener('message',function(e){ console.log(e) });
父页面向子页面传递消息通过 window.open
打开另一个页面,然后向他传值。需要注意的是,使用 postMessage 传值的时候需要使用setTimeout
去延迟消息的传递,因为子页面的加载不是一下子就加载完成的,也就是说子页面的监听事件还未开始,此时传值过去是接收不到的。
关于"HTML5中的postMessage手册如何使用"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注行业资讯频道,小编每天都会为大家更新不同的知识点。