无法通过IE上的跨域检索我的XML

时间:2012-06-12 08:29:03

标签: internet-explorer cross-browser xmlhttprequest cross-domain

我从W3C学校获取这段代码,它完全适用于Ie和Chrome,但没有更改,但是当我使用我的网址更改'url'参数时,它只适用于Chrome,而不适用于IE:

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function loadXMLDoc(url)
{
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    txt="<table border='1'><tr><th>Title</th><th>Artist</th></tr>";
    x=xmlhttp.responseXML.documentElement.getElementsByTagName("produits");
    for (i=0;i<x.length;i++)
      {
      txt=txt + "<tr>";
      xx=x[i].getElementsByTagName("produit");
        {
        try
          {
          txt=txt + "<td>" + xx[0].firstChild.nodeValue + "</td>";
          }
        catch (er)
          {
          txt=txt + "<td> </td>";
          }
        }
      xx=x[i].getElementsByTagName("nomprod");
        {
        try
          {
          txt=txt + "<td>" + xx[0].firstChild.nodeValue + "</td>";
          }
        catch (er)
          {
          txt=txt + "<td> </td>";
          }
        }
      txt=txt + "</tr>";
      }
    txt=txt + "</table>";
    document.getElementById('txtCDInfo').innerHTML=txt;
    }
  }
xmlhttp.open("GET",url,true);
xmlhttp.send();
}
</script>
</head>
<body>

<div id="txtCDInfo">
<button onclick="loadXMLDoc('http://www.sosmalus.tm.fr/fexpat/webservices/choix_produits.php?dev_statut=1&dev_fdpaysid=AF&dev_fddeffet=2012-06-07&dev_fdnbadu=1&dev_fdnbenf=0&dev_fadnaiss_a_1=1952-06-19')">Get CD info</button>
</div>

</body>
</html>

你知道这有什么问题吗?谢谢!

PS:我在远程页面添加了<?php header("Access-Control-Allow-Origin: *"); ?>

1 个答案:

答案 0 :(得分:0)

我不认为IE在IE10之前支持CORS。原始代码适用于W3Schools,可能是因为它们属于同一个原因。