这是XML文件:

<Test>
    <Category>
        <SubCat>
            <Name>Name</Name>
            <Properties>
                <Key>Key</Key>
                <Value>Value</Value>
            </Properties>
        </SubCat>
        <SubCat>
            <Name>Name</Name>
            <SubCat>
                <Name>AnotherName</Name>
                <Properties>
                    <Key>Key</Key>
                    <Value>Value</Value>
                </Properties>
            </SubCat>
        </SubCat>
    </Category>
</Test>

我想得到名字。但是只有第一个SubCat的名称。
以及属性的关键值。问题是SubCat存在两次。

我尝试了这个:
$(xml).find('SubCat').each(function() {
    var name = $(this).find("Name").text();
    alert(name);

}

但这显示了第一个和第二个SubCat的名称。

我搜索这样的东西。
rootElement(Category).selectallchildren(SubCat).Name for the first SubCat Name
rootElement(Category).selectallchildren(SubCat).(SubCat).Name for the second SubCat Name

并为键和值进行相同的显式选择

最佳答案

这里的技巧是利用jQuery评估CSS3选择器的能力。
SubCat:nth-of-type(1)选择带有任意父元素的首次出现的SubCat

所以这应该工作:

$(xml).find("SubCat:nth-of-type(1)").each(function(){
    var name = $(this).find("Name").text(),
        property = { };    //use an object to store the key value tuple
    property[$(this).find("Properties Key").text()] = $(this).find("Properties Value").text();

    console.log(name, property);
});

//Output:
//Name Object { Key="Value" }
//AnotherName Object { Key="Value"}

希望这就是您想要的;写下我的第一个答案时,我显然误解了您的问题,对于您的困惑,我们深表歉意。

09-28 05:58