91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

發布時間:2021-09-17 11:32:30 來源:億速云 閱讀:127 作者:小新 欄目:web開發

這篇文章給大家分享的是有關HTML5中window.postMessage與跨域的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

講到瀏覽器同源策略,即阻止不同域的頁面間訪問彼此的方法和屬性,并對解決同源策略跨域問題提出的解決方案進行闡述:子域代理、JSONP、CORS。本篇將詳細闡述HTML5 window.postMessage,借助postMessage API,文檔間可以以安全可控的方式實現跨域通信,第三方JavaScript代碼也可以與iframe內加載的外部文檔進行通信。

HTML5 window.postMessage API

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

postMessage發送消息

在需要發送消息的源窗口調用postMessage方法即可發送消息。

源窗口

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

文檔窗口中的iframe:

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

JavaScript打開的彈窗:

var win = window.open();

當前文檔窗口的父窗口:

var win = window.parent;

打開當前文檔的窗口:

var win = window.opener();

找到源window對象后,即可調用postMessage API向目標窗口發送消息:

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

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

注:只有當目標窗口的源與postMessage函數中傳入的源參數值匹配時,才能接收到消息。

接收postMessage消息

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

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事件,并綁定監聽函數
            window.addEventListener('message', receiveMsg, false);
        }else {
            window.attachEvent('message', receiveMsg);
        }
    };

message事件監聽函數接收一個參數,Event對象實例,該對象有三個屬性:

  1. data 發送的具體消息

  2. origin 發送消息源

  3. source 發送消息窗口的window對象引用

說明

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

  2. postMessage只能發送字符串信息。

實例

源窗口

<!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 嵌入子頁面(接收消息目標窗口) --> 
         <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打開接收消息目標窗口
                    win = window.open('http://jhssdemo.duapp.com/demo/h6_postmessage/win.html', 'popUp');
                }
                btn_send.onclick = function() { 
                    // 通過 postMessage 向子窗口發送數據      
                    win.postMessage('Hello', 'http://jhssdemo.duapp.com/');
                }
                function sendIt(e){ 
                    // 通過 postMessage 向子窗口發送數據
                    document.getElementById("otherWin").contentWindow 
                    .postMessage( 
                        document.getElementById("message").value, 
                        "http://jhssdemo.duapp.com/"); 
                } 
                sendBtn.onclick = function(e) {
                    sendIt(e);
                };
            };
        </script>
    </body>
    </html>

目標窗口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');  
                //監聽函數,接收一個參數--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事件并綁定監聽函數
                    window.addEventListener('message', receiveMsg, false);
                }else {
                    window.attachEvent('message', receiveMsg);
                }
            };
        </script>
    </body>
    </html>

感謝各位的閱讀!關于“HTML5中window.postMessage與跨域的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

襄城县| 安阳市| 五莲县| 富平县| 财经| 无棣县| 慈溪市| 织金县| 定安县| 美姑县| 西青区| 铜川市| 且末县| 开封县| 柞水县| 海宁市| 万宁市| 法库县| 玛多县| 连州市| 塔城市| 南城县| 若尔盖县| 海兴县| 西充县| 交城县| 雷州市| 措勤县| 漳州市| 漠河县| 老河口市| 柳州市| 德兴市| 潜江市| 当阳市| 崇阳县| 浦东新区| 江西省| 富蕴县| 青海省| 湖北省|