gpt4 book ai didi

javascript - 在关联数组 javascript 中搜索值

转载 作者:行者123 更新时间:2023-12-03 12:24:10 25 4
gpt4 key购买 nike

JavaScript

    var error = new Object ({'1a':'1','1b':'1','2a':'1'}); // like this I have defined around 200 values
if (some condition is true)
error[id] = 0; // id is selected dynamically ( '1a' or '1b' or what ever)

当这一切完成后,我想检查对象错误中是否有任何一个仍然具有值“1”。我已经使用了以下但似乎不起作用..

    for ( i in error)
if(error[i].value == '1') -some code- // this line gives error, not able to read value

正确的方法应该是什么......?

最佳答案

只需删除.value:

if(error[i] == '1'){...}

关于javascript - 在关联数组 javascript 中搜索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24303010/

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