使用jQuery从数组中获取一个项的值

时间:2011-11-28 17:20:51

标签: jquery arrays

我搜索了这个,但我发现的是.each()api,我找不到想要得到我想要的东西的方法。这就是我的数组的样子:

Customer : Array
(
   [name]=>Andrew
   [age]=>23
   .......
   [address]=>london
   .......
)

CustomerDet: Array
(
   [other]=>done
   [misc]=>todo
)

我如何获得地址的价值?

非常感谢。

2 个答案:

答案 0 :(得分:0)

$.each(Customer, function(index, value) { 
  alert(value.address); 
});

答案 1 :(得分:0)

您可以使用每个来做这样的事情,这会将userAddress变量填入其找到的第一个用户的地址,名称为'Andrew' -

var userAddress;
jQuery.each(CustomerArray,function(index, value) {
   if (value.name == "Andrew") {
     userAddress = value.address;
     return false;  
  }
})