访问http页面中嵌入的iframe的https iframe文档

时间:2012-12-17 03:56:11

标签: iframe ssl https

我有一个包含iframe的http网页。 iframe已超过https。 我需要访问iframe中的文档,但我无法访问。

var iframe = document.getElementById('myIFrame');

var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;

innerDoc将为NULL。控制台显示一条消息,指出协议必须匹配。

有什么技巧可以达到这个目的吗?

- 对于这种情况,安全问题并不重要

感谢。

0 个答案:

没有答案