5

这是 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

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

4

1 回答 1

1

这里的诀窍是利用 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"}

希望这就是你想要的;在写我的第一个答案时,我显然误解了你的问题,很抱歉造成混乱......

于 2012-10-18T08:56:14.307 回答