xml feed vs xml文档解析 - 区别?

时间:2011-01-05 23:29:14

标签: xml parsing feeds

在解析XML时,如下所示,book.xml是否需要是xml的静态文件,还是可以使用RSS的动态源URL? Feed网址是否需要以XML结尾,或者只是URL(例如:http://feeds.voices.washingtonpost.com/wp/reliable-source/index)?

if (window.XMLHttpRequest)
  {
  xhttp=new XMLHttpRequest();
  }
else // IE 5/6
  {
  xhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xhttp.open("GET","books.xml",false);
xhttp.send();
xmlDoc=xhttp.responseXML;

1 个答案:

答案 0 :(得分:0)

网址不必以“.xml”结尾。任何URL都可以。