1

我们正在通过 iframe 从我们的网站 (www.example.com) 调用 api 服务器 (api.example.com)。

当我们进行调用时,iframe 源 url 将父窗口 url 更改为 iframe 源 url。下面给出的是 iframe 代码:

<iframe onload="iframeManager.tempIframeCallback()" id="xd_iframe" allowtransparency="true" frameborder="0" scrolling="no" tabindex="0" name="xd_iframe" style="position:absolute;top:-9999em;width:10px;height:10px;" src= "{{html on api server}}">
        </iframe>

下面给出的是 api 服务器上的 html:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
        <title>xyz</title>

  <body>
    <script type="text/javascript" charset="utf-8">
        document.domain='example.com';
    </script>
  </body>
</html>

参考: http: //fettig.net/weblog/2005/11/28/how-to-make-xmlhttprequest-connections-to-another-server-in-your-domain/

4

1 回答 1

1

您所指的文章是2005年写的!现在,大多数现代浏览器都支持 CORS,只要服务器允许,您就可以干净地进行跨源 AJAX。这是一篇解释如何的博客文章:http ://www.nczonline.net/blog/2010/05/25/cross-domain-ajax-with-cross-origin-resource-sharing/

于 2012-05-31T13:57:48.593 回答