<iframe src="http://otherdomain.com" frameborder="0" width="100%"></iframe>
但我从我的 Chrome 中捕捉到了这条消息。域、协议和端口必须匹配。
有谁能解决吗?
<iframe src="http://otherdomain.com" frameborder="0" width="100%"></iframe>
但我从我的 Chrome 中捕捉到了这条消息。域、协议和端口必须匹配。
有谁能解决吗?
您不能直接读取其他域上 iframe 的内容,因为它会违反同源策略。如果您同时控制 mydomain.com 和 otherdomain.com,那么您可以使用postMessage API在 iframe 和顶级页面之间进行通信。例如,您可以使用postMessage
将 iframe 中的页面内容发送到外部页面。