0

使用 REST 查询服务器时,我收到以下信息:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<widgets>
  <widget>
    <wid>wid1007</wid>
    <path>widgets-1007</path>
    <name>Frobnutter</name>
    <id>1</id>
    <version>0</version>
  </widget>
  <widget>
    <wid>wid1008</wid>
    <path>widgets-1008</path>
    <name>Roberts-Coupler</name>
    <id>2</id>
    <version>0</version>
  </widget>
</widgets>

我需要使用“id”的已知值从“widget”中提取“wid”的值。这在 jQuery 中会是什么样子?

谢谢!

4

3 回答 3

0
var xml = //your xml output

$(xml).find('wid').each(function() {
   var content = $(this).text();
   var id = $(this).siblings('id').text();
   //do something with each <wid> tags content
});

或者

$('widget', xml).filter(function() {
    if ($(this).find('id').text() === '1') return $(this); 
}).find('wid');
于 2012-05-15T10:54:50.463 回答
0

http://jsbin.com/owiteq/edit#javascript,html

var xml = ...

$(xml).find("widget").each(function ()
        {
          if ($(this).find("id").text()==1)
         {
            alert($(this).find("wid").text());
         }
        });
于 2012-05-15T10:55:02.370 回答
0

Pass the xml to a variable lets say rest_data

$(rest_data).find("widget").each(function()
{
  if($(this).find("id").text() == "2")
  {
    //do something
    alert($(this).find("wid").text());
  }
});
于 2012-05-15T10:56:58.130 回答