0

xmlファイルをhtmlに解析しようとしています。だから私は次のように行きます

<script>
  xmlDoc=new window.XMLHttpRequest();
  xmlDoc.open("GET","test",false);
  xmlDoc.send("");
</script>

リクエストを「エコー」したいのですが、どうすればいいですか

<?xml version="1.0"?>
<catalog>
   <book id="bk101">
      <author>Gambardella, Matthew</author>
      <title>XML Developer's Guide</title>
      <genre>Computer</genre>
      <price>44.95</price>
      <publish_date>2000-10-01</publish_date>
      <description>An in-depth look at creating applications 
      with XML.</description>
   </book>
</catalog>
4

3 に答える 3

1

これを試して :

xmlDoc=new window.XMLHttpRequest() || new ActiveXObject("Microsoft.XMLHTTP") || new ActiveXObject("Msxml2.XMLHTTP");
xmlDoc.onreadystatechange = function(){
    if(xmlDoc.readyState = 4 && xmlDoc.status == 200)  // Success
    {
        document.write(xmlDoc.responseText);
    }
}
xmlDoc.open("GET","test",false);
xmlDoc.send("");
于 2012-04-19T12:54:21.983 に答える
0

XML 文字列を解析する

次のコード フラグメントは、XML 文字列を XML DOM オブジェクトに解析します。

txt="<bookstore><book>";
txt=txt+"<title>Everyday Italian</title>";
txt=txt+"<author>Giada De Laurentiis</author>";
txt=txt+"<year>2005</year>";
txt=txt+"</book></bookstore>";

if (window.DOMParser)
{
  parser=new DOMParser();
  xmlDoc=parser.parseFromString(txt,"text/xml");
}
else // Internet Explorer
{
  xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
  xmlDoc.async=false;
  xmlDoc.loadXML(txt); 
}

XML ドキュメントを解析する

次のコード フラグメントは、XML ドキュメントを XML DOM オブジェクトに解析します。

if (window.XMLHttpRequest)
{ // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
}
else
{ // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("GET","books.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;
于 2012-04-19T12:55:06.417 に答える
0

データをアラート ('your data or text here') してポップアップに表示するか、さまざまな方法を使用して div を選択し、.html(data) を使用してデータを挿入することができます。

于 2012-04-19T12:56:11.320 に答える