溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

HTML5中的postMessage手冊(cè)如何使用

發(fā)布時(shí)間:2022-02-21 10:33:46 來(lái)源:億速云 閱讀:192 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“HTML5中的postMessage手冊(cè)如何使用”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“HTML5中的postMessage手冊(cè)如何使用”文章能幫助大家解決問(wèn)題。

我們?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ù),dataoriginUrl。data是指需要傳遞的內(nèi)容,但是部分瀏覽器只能處理字符串參數(shù),所以我們一般把data序列化一下,即JSON.stringify()originUrl是指目標(biāo)url,指定的窗口。

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

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();' >接受信息</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的值。

HTML5中的postMessage手冊(cè)如何使用

子頁(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();' >接受信息</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ò)去是接收不到的。

關(guān)于“HTML5中的postMessage手冊(cè)如何使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI