10

我正在尝试使用以下插件在子 iframe 与其父级之间进行通信:

http://benalman.com/projects/jquery-postmessage-plugin/

我可以按照这个例子将孩子的消息发布给父母,但不能反过来,我真的需要能够以两种方式进行交流。

父级上的代码如下:

var origin = document.location.protocol + '//' + document.location.host,
    src = origin + '/Custom/Ui/Baseline/html/iframe-data-cash.htm#' + encodeURIComponent(document.location.href);

$(function () {

    var $holder = $('#iframe'),
        height,
        $iframe = $('<iframe src="' + src + '" id="data-cash-iframe" width="100%" scrolling="no" allowtransparency="true" seamless="seamless" frameborder="0" marginheight="0" marginwidth="0"></iframe>');

    // append iframe to DOM
    $holder.append($iframe);

});

$(window).load(function () {
    $.postMessage(
        'hello world',
        src,
        parent.document.getElementById('data-cash-iframe').contentWindow
    );
});

而孩子身上的代码如下:

$(function () {

    var parentURL = decodeURIComponent(document.location.hash.replace(/^#/, ''));

    $.receiveMessage(
        function (e) {
            alert(e.data);
        },
        parentURL
    );

});

我真的不明白为什么这不起作用,我迫切需要帮助!

4

3 回答 3

8

从来没有使用过那个插件,不能说它有什么问题,但是,或者你可以使用 HTML 5 postMessage。

由于您想向 iframe 发送数据,因此请在其上注册一个事件侦听器:

window.addEventListener('message', receiver, false);

function receiver(e) {
   if (e.origin == '*') {
     return;
   } else {
     console.log(e.data);
   }
}

请务必根据您的受信任域检查来源以防止损坏,而不是接受所有的“*”。

现在你可以打电话

message = "data";
iframe = document.getElementById('iframe');  
iframe.contentWindow.postMessage(message, '*');    

同样,您应该使用目标域更改“*”。

于 2013-03-21T17:50:26.360 回答
2
1.sendPage
<script type='text/javascript'>
var sendpost = document.getElementById('wrapper').scrollHeight;
var target = parent.postMessage ? parent : (parent.document.postMessage ?   parent.document : undefined); 
target.postMessage(sendpost,'*');
</script>
2. real iframe load page
function handling(e){
                sendIframeHeight = e.data;
}

// <= ie8
if (!window.addEventListener) {
                window.attachEvent("onmessage", handling);
}else{ // > ie8
                window.addEventListener('message', handling, false);
}
于 2014-10-31T00:59:09.823 回答
1

我有类似的要求,最终使用 postMessage 将数据从孩子发送到父母。然后,为了将数据从父级发送到子级,我通过 iframe 的 src 属性在查询字符串中传递了数据。通过这样做,我可以解析查询字符串并在我的子页面中检索数据。

于 2013-08-14T20:41:51.713 回答