HTML5的postMessage的使用手冊(cè)
我們?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í)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
html5 postMessage前端跨域并前端監(jiān)聽(tīng)的方法示例
這篇文章主要介紹了html5 postMessage前端跨域并前端監(jiān)聽(tīng)的方法示例的相關(guān)資料,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-11-01
詳解html5 postMessage解決跨域通信的問(wèn)題
這篇文章主要介紹了詳解html5 postMessage解決跨域通信的問(wèn)題的相關(guān)資料,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2018-08-17html5通過(guò)postMessage進(jìn)行跨域通信的方法
這篇文章主要介紹了html5通過(guò)postMessage進(jìn)行跨域通信的方法的相關(guān)資料,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-12-04- 這篇文章主要介紹了詳解HTML5 window.postMessage與跨域,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2017-05-11
html5 postMessage解決跨域、跨窗口消息傳遞方案
本篇文章主要介紹了html5 postMessage解決跨域、跨窗口消息傳遞方案,具有一定的參考價(jià)值,有需要的可以了解一下、2016-12-20HTML5中使用postMessage實(shí)現(xiàn)兩個(gè)網(wǎng)頁(yè)間傳遞數(shù)據(jù)
這篇文章主要為大家詳細(xì)介紹了利用HTML5里的window.postMessage在兩個(gè)網(wǎng)頁(yè)間傳遞數(shù)據(jù)的相關(guān)資料,postMessage API的功能是可以讓你在兩個(gè)瀏覽器窗口或iframe之間傳遞信息數(shù)2016-06-22- window.postMessage經(jīng)常被人們利用來(lái)做跨域數(shù)據(jù)傳遞,下面將為大家來(lái)介紹HTML5中的postMessage API基本使用教程,需要的朋友可以參考下2016-05-20
HTML5中使用postMessage實(shí)現(xiàn)Ajax跨域請(qǐng)求的方法
這篇文章主要介紹了HTML5中使用postMessage實(shí)現(xiàn)Ajax跨域請(qǐng)求的方法的相關(guān)資料,需要的朋友可以參考下2016-04-19Html5 postMessage實(shí)現(xiàn)跨域消息傳遞
這篇文章主要介紹了Html5 postMessage實(shí)現(xiàn)跨域消息傳遞的相關(guān)資料,需要的朋友可以參考下2016-03-11html5跨域通訊之postMessage的用法總結(jié)
本文是對(duì)html5跨域通訊之postMessage的用法進(jìn)行了詳細(xì)的總結(jié)介紹,需要的朋友可以過(guò)來(lái)參考下,希望對(duì)大家有所幫助2013-11-07


