0

我试图将 xml 文件解析为 html。所以我atm跟着

<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

您可以警告(“您的数据或此处的文本”)数据并将其显示在弹出窗口中,或者使用各种方法选择一个 div 并使用 .html(data) 插入您的数据。

于 2012-04-19T12:56:11.320 回答