我有这个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>
如何选择以“匹配”开头的所有标签。
谢谢
答案 0 :(得分:1)
您可以使用filter
方法:
var $match = $('computers *').filter(function() {
return this.localName.indexOf('match') === 0
})