2

我在底部列出了从 XML 文件解析信息并正确运行的脚本。如果我想显示最大限制结果(例如 5),我无法做到。我认为“切片”功能是我需要的。在简单的文本数组(“Mango”、“Banana”、“Kiwi”、“Peach”)中使用相同的函数没有问题。有什么建议吗?提前致谢。

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","cd_catalog.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML; 
x=xmlDoc.getElementsByTagName("CD");

function displayCDInfo(i)
{
  artist=(x[i].getElementsByTagName("ARTIST")[0].childNodes[0].nodeValue);
  title=(x[i].getElementsByTagName("TITLE")[0].childNodes[0].nodeValue);
  year=(x[i].getElementsByTagName("YEAR")[0].childNodes[0].nodeValue);
  country=(x[i].getElementsByTagName("COUNTRY")[0].childNodes[0].nodeValue);
  company=(x[i].getElementsByTagName("COMPANY")[0].childNodes[0].nodeValue);
  price=(x[i].getElementsByTagName("PRICE")[0].childNodes[0].nodeValue);
  txt="Artist: "+artist+"<br />Title: "+title+"<br />Year: "+year+"<br />Country: "+country+"<br />Company: "+company+"<br />Price: "+price  ;
  document.getElementById("showCD").innerHTML=txt;
}
4

1 回答 1

0

目前尚不清楚您真正想要什么,但我认为您在某处调用此函数,而您的 var x 是一个数组。尝试这个 。

for(var i=0;i<5;i++){
    displayCDInfo(i)
    }
于 2012-09-20T10:58:57.563 回答