如何使用jQuery搜索多个XML节点的特定属性

时间:2010-11-22 20:53:22

标签: jquery xml

忍受我,我是使用jQuery操纵XML的新手。

假设我有一个类似于这样的XML文档:

<sitemap>
  <products name="products" url="/products.html">
     <shirts name="women's shirts" url="/womens-shirts.html">
     <shoes name="women's shoe" url="/womens-shoes.html">
     <pants....>
  </products>
  <services>
     <shopping>
     <consultation>
  </services>
</sitemap>

等,其中每个子节点都有一个名称和一个URL(我正在基于window.location.pathname填充面包屑)。我想搜索一个特定的URL(它应该匹配你所在的任何页面),它可以在任何节点中,父节点或子节点。如何在不指定我正在搜索的节点的情况下执行此操作?

谢谢!

1 个答案:

答案 0 :(得分:1)

要指定任何元素名称,请使用星号:

*[url='/products.html']