获取带有标记的XML的所有元素

时间:2012-11-19 11:10:49

标签: javascript jquery xml

我有这个XML:

<computers>
    <computer sid="1353323295303">
        <description>TEST</description>
        <match.country result="match" value="FR EU">
            <match.country result="match" value="EU"></match.country>
        </match.country>
    </computer>
</computers>

如何选择以“匹配”开头的所有标签。

谢谢

1 个答案:

答案 0 :(得分:1)

您可以使用filter方法:

var $match = $('computers *').filter(function() {
    return this.localName.indexOf('match') === 0
})

http://jsfiddle.net/UmUkj/