佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > HTML5的postMessage的使用手冊

HTML5的postMessage的使用手冊

熱門標(biāo)簽:美圖手機(jī) 百度競價點(diǎn)擊價格的計(jì)算公式 硅谷的囚徒呼叫中心 使用U盤裝系統(tǒng) 阿里云 檢查注冊表項(xiàng) 智能手機(jī) 網(wǎng)站建設(shè)

我們在碼代碼的時候,經(jīng)常會碰到以下跨域的情況:

1、頁面內(nèi)嵌套iframe,與iframe的消息傳遞

2、頁面與多個頁面之間的傳遞消息

針對這些令人頭疼的跨域問題,html5特地推出新功能--postMessage(跨文檔消息傳輸)。postMessage在使用時,需要傳入2個參數(shù),data和originUrl。data是指需要傳遞的內(nèi)容,但是部分瀏覽器只能處理字符串參數(shù),所以我們一般把data序列化一下,即JSON.stringify(),originUrl是指目標(biāo)url,指定的窗口。

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

1、頁面內(nèi)嵌套iframe

父頁面:

html:

<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,'http://127.0.0.1:8081/index.html')

}

父頁面通過postMessage的方法向iframe傳遞消息,而子頁面通過window.addEventListener監(jiān)聽message方法來獲取到父頁面?zhèn)鬟f的值。如下圖所示,data是父頁面?zhèn)鬟f的值。

子頁面向父頁面?zhèn)鬟f消息,也是通過postMessage的方法去傳遞消息,不是過是以window.parent.postMessage(data,url)的方式傳值。父頁面獲取值也是同樣監(jiān)聽message事件。

2、多頁面之間傳遞消息

父頁面:

html:

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

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:

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

js:

window.addEventListener('message',function(e){

      console.log(e)

 });

父頁面向子頁面?zhèn)鬟f消息通過window.open打開另一個頁面,然后向他傳值。需要注意的是,使用postMessage傳值的時候需要使用setTimeout去延遲消息的傳遞,因?yàn)樽禹撁娴募虞d不是一下子就加載完成的,也就是說子頁面的監(jiān)聽事件還未開始,此時傳值過去是接收不到的。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:山南 賀州 湘潭 通遼 懷化 湖北 煙臺 黃山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML5的postMessage的使用手冊》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    江津市| 苏尼特左旗| 霍州市| 延长县| 永德县| 通渭县| 北海市| 鸡东县| 尼勒克县| 绿春县| 株洲县| 锡林郭勒盟| 堆龙德庆县| 武穴市| 肥西县| 仙居县| 黑龙江省| 历史| 镇沅| 金平| 湟中县| 大兴区| 塔河县| 洞口县| 嘉鱼县| 锡林浩特市| 张家界市| 江川县| 浠水县| 北辰区| 桂东县| 如皋市| 黔西县| 富裕县| 汕头市| 溧阳市| 赫章县| 台南市| 镇原县| 保山市| 那曲县|