0

私はW3CSchoolからこのコードを取得しました。これは、変更なしでIeとChromeで完全に機能しますが、URLで「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: *"); ?>遠いページに追加しました

4

1 に答える 1

0

IE は IE10 より前に CORS をサポートしているとは思わない。元のコードが W3Schools で機能するのは、おそらくそれらが同じ起源であるためです。

于 2012-06-13T14:49:15.650 に答える