使用$ .each()在对象中引用数组?

时间:2018-02-21 17:08:40

标签: javascript jquery each

此代码;

$.each( formValues, function(index, array) { 
        console.log("index: ",index," array: ",array);
        });

在控制台中输出;

index:  0  array:  {name: "check2", value: "checked"}
index:  1  array:  {name: "text1", value: "4"}

如何调整每个语句,以便我可以在已记录的数组中单独定位'name'和\或'value'值?

提前致谢。

1 个答案:

答案 0 :(得分:4)

使用.访问来自对象的值

$.each(formValues, function(index, array) {
  console.log(array.name); // will output name
  console.log(array.value); // Will output value
});