gpt4 book ai didi

javascript - 使用 $.each() 引用对象中的数组?

转载 作者:行者123 更新时间:2023-11-28 14:38:42 25 4
gpt4 key购买 nike

这段代码;

$.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"}

如何调整每个语句,以便可以在记录的数组中单独定位“名称”和/或“值”值?

提前致谢。

最佳答案

使用.从对象访问值

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

关于javascript - 使用 $.each() 引用对象中的数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48911653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com