0

我有一个域名说

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 );

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

My question is should my subdomain be domain.com/support or is there any way I can work with support.domain.com

Please avoid giving answers in jQuery

Thanks

4

1 回答 1

0

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

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

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

于 2012-04-18T16:26:04.817 回答