document.evaluate使用iterateNext返回null

时间:2012-12-31 14:09:29

标签: javascript xml xpath document.evaluate

我一直在关注w3学校使用xpath导航我的xml文档的示例,但是我从iterateNext()返回的所有内容都是null。下面是我的blog.xml文件。

<blog
xmlns ="http://www.w3schools.com" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="blogschema.xsd">
<Title>My blog</Title>

<Entry>
    <Heading id="101">week1</Heading>   
    <body>
        <text>enter text right here</text>
        <pictures>pictures in the body</pictures>

    </body>
    <labels>Seperate labels with commas</labels>
    <date> 20121119</date>

</Entry>





</blog>

这是我的html脚本,永远不会达到while语句因为结果总是返回null,这可能是我可以忽略的东西,但我认为如果它在w3学校它应该真的有效。     

xmlDoc=loadXMLDoc("blog.xml");//loads xml file  
//loadXmlContent(xmlDoc); using xml dom

path="/blog/Title"
if(document.implementation && document.implementation.createDocument)
{

    var nodes = xmlDoc.evaluate(path, xmlDoc, null, 5, null);
    alert(nodes);
    var result = nodes.iterateNext();


    while (result)
    {document.write(result.childNodes[0].nodeValue);}

}
</script>

1 个答案:

答案 0 :(得分:2)

输入中有一个默认的名称空间声明xmlns="http://www.w3schools.com",您需要将其考虑在内。例如

var nodes = xmlDoc.evaluate("df:blog/df:Title", xmlDoc, function(prefix) { if (prefix === "df") return "http://www.w3schools.com"; }, 5, null);

var result;

while ((result = nodes.iterateNext()) != null)
{
  document.write(result.textContent);
}