使用jquery在每个方法中设置动态变量名称

时间:2014-08-04 08:12:15

标签: php jquery variables each

我正在尝试使用条件语句在each方法中设置动态变量名。我尝试像在php中一样分配变量,但它不起作用。怎么做?

这是我的代码

var owners_index_val_ar = $("#owners_index").val().split(',');
$.each(owners_index_val_ar, function(index, value){
    $("#owner"+value+" :input").each(function(){
        if($(this).val() == ""){
            $(this).closest('.form-group').addClass("has-error");
            error = true;
        }
    });

    if(error == true){
        var error_code_own_"+value = true; // this doesn't work
    }
})

0 个答案:

没有答案