访问子域中的IFRAME内容

时间:2012-04-18 16:23:22

标签: javascript iframe

我有一个域名

http://www.domain.com

我有子域名

http://support.domain.com

我在support.domain.com的IFRAME中加载domain.com 我希望

var ifr = document.getElementById( yourIframeId );
var ifrDoc = ifr.contentDocument || ifr.contentWindow.document;
var theForm = ifrDoc.getElementById( yourFormId );

此代码正常工作。但事实并非如此。

我的问题是我的子域名应该是domain.com/support 或者我有什么方法可以使用support.domain.com

请避免在jQuery中给出答案

由于

1 个答案:

答案 0 :(得分:0)

如果您将其添加到最外层HTML文件的顶部附近,它可能会起作用:

<script type="text/javascript">document.domain = 'domain.com';</script>

您是控制这两个域还是控制两个域提供的内容?