首页 > 作文

HTML5的postMessage的使用手册

更新时间:2023-04-03 03:50:20 阅读: 评论:0

我们在码代码的时候,经常会碰到以下跨域的情况:

1、页面内嵌套iframe,与iframe的消息传递

2、页面与多个页面之间的传递消息

针对这些令人头疼的跨域问题,html5特地推出新功能–postmessage(跨文档消息传输)。postmessage在使用时,需要传入2个参数,data和ori向量数乘ginurl。data是指需要传递的内容,但是部分浏览器只能处理字符串参数,所以我们一般把data序列化一下,即json.stringify(),originurl是指目标url,指定的窗口。

下面直接甩例子,相信大家更容易理解写。

1、页面内嵌套iframe

父页面:

html:

&建党90周年大会lt;div id='parent'>hello word postmessage</div><iframe src="http://127.0.0.1:8082/index2.html" id='child'></iframe>

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:

<div id='button' onclick='changecolor();' style="color:yellow">接受信息</div>

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,'htt关于狼的资料p://127.0.0.1:8081/index.html')}

父页面通过postmessage的方法向iframe传递消息,而子页面通过window.addeventlistener监听message方法来获取到父页面传递的值。如下图所示,data是父页面传递的值。

子页面向父页面传递消息,也是通过postmessage的方法去传递消息,不是过是以window.parent.postmessage(data,url)的方式传值。父页面获取值也是同样监听message事件。

2、多页面之间传递消息

父页面:

html:

<div id='parent' onclick="postmessage()">hello word postmessage</div>

js:

let p之的用法arent = document.getelementbyid('parent')function postmessage(){    let windowopen=window.open('http://127.0.0.1:8082/index2.html','postmessage')    ttimeout(function(){       windowopen.postmessage('postmessagedata','http://127.0.0.1:8082/index2.html')  },1000) }

子页面:

html:

<div id='button' onclick='changecolor();' style="color:#f00">接受信息</div>

js:

window.addeventlistener('message',function(e){      console.log(e) });

父页面向子页面传递消息通过window.open打开另一个页面,然后向他传值。需要注意的是,使用postmessage传值的时候需要使用ttimeout去延迟消息的传递,因为子页面的加载不是一下子就加载完成的,也就是说子页面的监听事件还未开始,此时传值过去是接收不到的。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-03 03:50:08,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/8d6c8f62a5bbd4079b2fd68f10b6314d.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:HTML5的postMessage的使用手册.doc

本文 PDF 下载地址:HTML5的postMessage的使用手册.pdf

标签:页面   消息   是指   嵌套
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图