如何循环数组以提取Id编号javascript

时间:2016-11-09 17:17:19

标签: javascript jquery html

我有一个来自数据库的列表,并创建了一个复选框输入列表。当用户点击复选框时,它将仅填充该项目。我想要做的是检查复选框的状态。如果选中它,我想在console.log中对systemId和要比较的运算符名称进行比较,以确保它们匹配。 这是我的代码:

        $(".wellProducer").click(function(){
            if(this.checked == true){
                console.log(wells["SystemId"]);
                console.log(wellProducers["Operator"]);
            }
        });

.wellProducer是输入复选框的类。我现在填充的是所有systemId和运算符,但我想比较它们以确定它们是否匹配。

1 个答案:

答案 0 :(得分:2)

for(var i = 0; i < wells.SystemId; i++) {
    if (wells.SystemId[i] == wells.Operator[i]) {
        console.log(wells.SystemId[i]);
    }
}

假设它们是字符串,并且它们按相同顺序排列。否则请评论这个答案,我会看到我可以改变它以使其发挥作用。