1

我目前使用 w3cschools 上的一个简单的循环 XML 脚本,效果很好:

 if (p1p2total == 5)
  {
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","xml/SearchRequest-12437.xml",false);
xmlhttp.send();
xmlDoc=xmlhttp.responseXML;

var x=xmlDoc.getElementsByTagName("item");
for (i=0;i<x.length;i++)
{
document.write("<tr><td class='c3c1'>");
document.write(x[i].getElementsByTagName("key")[0].childNodes[0].nodeValue);
document.write("</td><td class='c3c2b'>");
document.write(x[i].getElementsByTagName("priority")[0].childNodes[0].nodeValue);
document.write("</td><td class='c3c3b'>");
document.write(x[i].getElementsByTagName("customfields")[0].getElementsByTagName("customfield")

   [0].getAttributeNode("id").textContent);
document.write("</td></tr>");
}
}

但是,在我的第三个节点值查询 customfields 中,我试图在我的 xml 中获取具有以下路径的节点的 textContent:

项目 -> 自定义字段 -> 自定义字段 id=10080 -> 自定义字段值

如何获取 customfieldvalue 的 textContent 值?父节点必须具有 id=10080 的属性,因为不同的项目具有不同数量的自定义字段标签,这些标签具有不同的子节点 ID。

请帮忙!!!

我只需要这个在 FireFox 中工作......

- -编辑 - -

好的,所以我发现我需要使用的 xpath 是:

    ./customfields/customfield[@id='customfield_10080']/customfieldvalues/customfieldvalue/text()

那么我该如何更换线路

    document.write(x[i].getElementsByTagName("customfields")[0].getElementsByTagName("customfield")[0].getAttributeNode("id").textContent);

提取我提供的 Xpath 的文本内容,同时保留在 javascript 循环中?我需要这个来为每个人拉这个 Xpath

4

1 回答 1

0

就我而言,你只需要打电话

document.write(x[i].getElementsByTagName("customfields")[0].getElementsByTagName("customfield").text;

试试看。有几种方法可以从 javascript 读取和解析 XML。我不会推荐 w3schools 来学习。去根,下次试试MDN ;)

我希望它有帮助

于 2012-07-24T23:49:43.023 回答