使用postMessage发送跨域消息,window.postMessage('hellothere!',location.protocol+'//a.b.com');但是报了下面的错误:Failedtoexecute'postMessage'on'DOMWindow':Thetargetoriginprovided('http://a.b.com')doesnotmatchtherecipientwindow'sorigin('http://c.e.com')请问是什么原因?
2 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
otherWindow.postMessage(message,targetOrigin,[transfer]);otherWindow:其他窗口的一个引用,比如iframe的contentWindow属性、执行window.open返回的窗口对象、或者是命名过或数值索引的window.frames。otherWindow不能是当前窗口哦参见MDN
添加回答
举报
0/150
提交
取消