我的页面上有一个iFrame,它显示一个XML文档。

<iframe id="iFrame2" name="iFrame2"  width="100%" height="100%">

我需要从父页面访问iFrame中的XML文档。我该怎么做?
当我尝试:
console.log(iFrame2.document);

我得到以下错误:
Permission denied for <http://localhost:3000> to get property Window.document from <http://www.imageshack.us>.

最佳答案

请参阅comp.lang.javascript常见问题解答:
http://www.jibbering.com/faq/#frameRef

关于html - 如何在iFrame中访问XML文档?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3278707/

10-10 04:12