溫馨提示×

溫馨提示×

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

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

H5中window.postMessage與跨域的示例分析

發(fā)布時間:2021-09-13 15:52:09 來源:億速云 閱讀:265 作者:小新 欄目:web開發(fā)

這篇文章主要為大家展示了“H5中window.postMessage與跨域的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“H5中window.postMessage與跨域的示例分析”這篇文章吧。

HTML5 window.postMessage API

HTML5 window.postMessage是一個安全的、基于事件的消息API。

postMessage發(fā)送消息

在需要發(fā)送消息的源窗口調(diào)用postMessage方法即可發(fā)送消息。

源窗口

源窗口可以是全局的window對象,也可以是以下類型的窗口:

文檔窗口中的iframe:

var iframe = document.getElementById('my-iframe');
    var win = iframe.documentWindow;

JavaScript打開的彈窗:

var win = window.open();

當(dāng)前文檔窗口的父窗口:

var win = window.parent;

打開當(dāng)前文檔的窗口:

var win = window.opener();

找到源window對象后,即可調(diào)用postMessage API向目標(biāo)窗口發(fā)送消息:

``win.postMessage('Hello', 'ttp://jhssdemo.duapp.com/');"

postMessage函數(shù)接收兩個參數(shù):第一個為將要發(fā)送的消息,第二個為源窗口的源。

注:只有當(dāng)目標(biāo)窗口的源與postMessage函數(shù)中傳入的源參數(shù)值匹配時,才能接收到消息。

接收postMessage消息

要想接收到之前源窗口通過postMessage發(fā)出的消息,只需要在目標(biāo)窗口注冊message事件并綁定事件監(jiān)聽函數(shù),就可以在函數(shù)參數(shù)中獲取消息。

window.onload = function() {
        var text = document.getElementById('txt');  
        function receiveMsg(e) {
            console.log("Got a message!");
            console.log("nMessage: " + e.data);
            console.log("nOrigin: " + e.origin);
            // console.log("Source: " + e.source);
            text.innerHTML = "Got a message!<br>" +
                "Message: " + e.data +
                "<br>Origin: " + e.origin;
        }
        if (window.addEventListener) {
            //為窗口注冊message事件,并綁定監(jiān)聽函數(shù)
            window.addEventListener('message', receiveMsg, false);
        }else {
            window.attachEvent('message', receiveMsg);
        }
    };

message事件監(jiān)聽函數(shù)接收一個參數(shù),Event對象實例,該對象有三個屬性:

  1. data 發(fā)送的具體消息

  2. origin 發(fā)送消息源

  3. source 發(fā)送消息窗口的window對象引用

說明

  1. 可以將postMessage函數(shù)第二個參數(shù)設(shè)為*,在發(fā)送跨域消息時會跳過對發(fā)送消息的源的檢查。

  2. postMessage只能發(fā)送字符串信息。

實例

源窗口

<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Html5 postMessage</title>
        <style>
            #otherWin {
                width: 600px;
                height: 400px;
                background-color: #cccccc;
            }
        </style>
    </head>
    <body>
        <button id="btn">open</button>
        <button id="send">send</button>
         <!-- 通過 iframe 嵌入子頁面(接收消息目標(biāo)窗口) --> 
         <iframe src="http://jhssdemo.duapp.com/demo/h6_postmessage/win.html" 
                     id="otherWin"></iframe> 
         <br/><br/> 
         <input type="text" id="message"><input type="button" 
                 value="Send to child.com" id="sendMessage" /> 
        <script>
            window.onload = function() {
                var btn = document.getElementById('btn');
                var btn_send = document.getElementById('send');
                var sendBtn = document.getElementById('sendMessage');
                var win;
                btn.onclick = function() {
                    //通過window.open打開接收消息目標(biāo)窗口
                    win = window.open('http://jhssdemo.duapp.com/demo/h6_postmessage/win.html', 'popUp');
                }
                btn_send.onclick = function() { 
                    // 通過 postMessage 向子窗口發(fā)送數(shù)據(jù)      
                    win.postMessage('Hello', 'http://jhssdemo.duapp.com/');
                }
                function sendIt(e){ 
                    // 通過 postMessage 向子窗口發(fā)送數(shù)據(jù)
                    document.getElementById("otherWin").contentWindow 
                    .postMessage( 
                        document.getElementById("message").value, 
                        "http://jhssdemo.duapp.com/"); 
                } 
                sendBtn.onclick = function(e) {
                    sendIt(e);
                };
            };
        </script>
    </body>
    </html>

目標(biāo)窗口win.html

<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Html5 postMessage</title>
        <style>
            #txt {
                width: 500px;
                height: 300px;
                background-color: #cccccc;
            }
        </style>
    </head>
    <body>
        <h2>The New Window</h2>
        <p id="txt"></p>
        <script>        
            window.onload = function() {
                var text = document.getElementById('txt');  
                //監(jiān)聽函數(shù),接收一個參數(shù)--Event事件對象
                function receiveMsg(e) {
                    console.log("Got a message!");
                    console.log("nMessage: " + e.data);
                    console.log("nOrigin: " + e.origin);
                    text.innerHTML = "Got a message!<br>" +
                        "Message: " + e.data +
                        "<br>Origin: " + e.origin;
                }
                if (window.addEventListener) {
                    //為window注冊message事件并綁定監(jiān)聽函數(shù)
                    window.addEventListener('message', receiveMsg, false);
                }else {
                    window.attachEvent('message', receiveMsg);
                }
            };
        </script>
    </body>
    </html>

以上是“H5中window.postMessage與跨域的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

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

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

AI