0

我有这个 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>

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

谢谢

4

1 回答 1

1

您可以使用filter方法:

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

http://jsfiddle.net/UmUkj/

于 2012-11-19T11:16:38.030 回答