婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

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

HTML5的postMessage的使用手冊

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

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

1、頁面內嵌套iframe,與iframe的消息傳遞

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

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

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

1、頁面內嵌套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監聽message方法來獲取到父頁面傳遞的值。如下圖所示,data是父頁面傳遞的值。

子頁面向父頁面傳遞消息,也是通過postMessage的方法去傳遞消息,不是過是以window.parent.postMessage(data,url)的方式傳值。父頁面獲取值也是同樣監聽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)

 });

父頁面向子頁面傳遞消息通過window.open打開另一個頁面,然后向他傳值。需要注意的是,使用postMessage傳值的時候需要使用setTimeout去延遲消息的傳遞,因為子頁面的加載不是一下子就加載完成的,也就是說子頁面的監聽事件還未開始,此時傳值過去是接收不到的。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

標簽:中山 萍鄉 阿壩 聊城 綏化 金昌 赤峰 盤錦

巨人網絡通訊聲明:本文標題《HTML5的postMessage的使用手冊》,本文關鍵詞  HTML5,的,postMessage,使用手冊,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《HTML5的postMessage的使用手冊》相關的同類信息!
  • 本頁收集關于HTML5的postMessage的使用手冊的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 沾益县| 社会| 天津市| 贵德县| 张掖市| 竹北市| 丹东市| 黎川县| 淮安市| 松潘县| 图木舒克市| 瓮安县| 西乌| 宁明县| 新干县| 海晏县| 花垣县| 通辽市| 上虞市| 耿马| 吉安县| 兴义市| 静乐县| 珠海市| 全南县| 黄大仙区| 富顺县| 永嘉县| 陈巴尔虎旗| 绥中县| 九江市| 柳河县| 丹阳市| 深泽县| 金乡县| 黄石市| 蒙城县| 凉城县| 贵南县| 安达市| 石渠县|