濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > HTML5的postMessage的使用手冊(cè)

HTML5的postMessage的使用手冊(cè)

熱門標(biāo)簽:地圖標(biāo)注軟件打印出來(lái) 欣鼎電銷機(jī)器人 效果 電話機(jī)器人技術(shù) 黃石ai電銷機(jī)器人呼叫中心 惡搞電話機(jī)器人 ok電銷機(jī)器人 高德地圖標(biāo)注商戶怎么標(biāo) 智能電銷機(jī)器人被禁用了么 如何查看地圖標(biāo)注

我們?cè)诖a代碼的時(shí)候,經(jīng)常會(huì)碰到以下跨域的情況:

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

2、頁(yè)面與多個(gè)頁(yè)面之間的傳遞消息

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

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

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

父頁(yè)面:

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

})

子頁(yè)面:

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')

}

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

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

2、多頁(yè)面之間傳遞消息

父頁(yè)面:

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) 

}

子頁(yè)面:

html:

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

js:

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

      console.log(e)

 });

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

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

標(biāo)簽:中山 萍鄉(xiāng) 阿壩 聊城 綏化 金昌 赤峰 盤錦

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《HTML5的postMessage的使用手冊(cè)》,本文關(guān)鍵詞  HTML5,的,postMessage,使用手冊(cè),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《HTML5的postMessage的使用手冊(cè)》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于HTML5的postMessage的使用手冊(cè)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    定结县| 河池市| 来安县| 图片| 宁阳县| 青阳县| 光泽县| 墨江| 梓潼县| 安化县| 五大连池市| 浦城县| 闸北区| 广灵县| 渝北区| 上高县| 鹿泉市| 济源市| 铜川市| 望都县| 喀喇沁旗| 大丰市| 潞城市| 临安市| 新建县| 射阳县| 尤溪县| 满洲里市| 永靖县| 五华县| 筠连县| 敦化市| 临猗县| 柞水县| 宝应县| 玉林市| 抚顺市| 泰兴市| 凌云县| 云龙县| 泽库县|