我正在尝试使用条件语句在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
}
})