iframeでのデータのやりとり(window.postMessage)

更新日 2022-12-09 15:28:50
javascript

親画面


$(function() {
    $(document).on("click", "button", function() {
        document.getElementById("iframe").contentWindow.postMessage("hello", "*");
    });
});

子画面(iframe)


$(function() {
    $(window).on("message", function(e) {
        // originをチェック
        if (e.originalEvent.origin !== 'https://xxxx') {
            return ;
        }
        // ポストされたメッセージ(データ)
        let data = e.originalEvent.data;
        
        $(".disp").text(origin);
    });
});