跨域和php的postMessage

时间:2014-06-11 20:02:47

标签: php iframe postmessage

我在www.domain1.com/file.php上有一个iframe,它试图使用postMessage与另一个iframe www.domain2.com/file2.php交谈。 php文件只是写了一些简单的javascript和html。

到目前为止,如果文件位于同一个域,但不是另一个域,我可以使postMessage工作。我在javascript控制台中没有收到任何错误。

    In the sending file which is at http://www.domain1.com

alert("start");  
top.frames[0].postMessage('postit','http://www.domain1.com');     
alert("end");

 In the receiving second file which is at domain2:
    function receiver(event) {
        if (event.origin == 'http://www.domain1.com') {
            if (event.data == 'postit') {
                alert("it worked");
                alert(event.data);
            }
            else {
                alert("it failed");
                alert(event.data);
            }
        }
    }
window.addEventListener('message', receiver, false);

当domain1 = domain2时,它可以正常工作,否则它不会 我在javascript控制台中没有错误但是没有发送消息。

如何调试?
使用php有什么关系吗?

1 个答案:

答案 0 :(得分:2)

我认为你的目标是错误的。

在domain1上,代码应为:

postMessage('postit','http://www.domain2.com');

然后在domain2上允许来自domain1的消息

if (event.origin == 'http://www.domain1.com') {