次のプラグインを使用して、子 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
);
});
これが機能しない理由が本当にわかりません。助けが切実に必要です!