estoy
amigos como asigno un valor a un checkbox
de esta manera arrayOpt.push($(this).val()==0);
y mediante un alert("boletines:"+" "+arrayOpt);
tengo como resultado
boletines: false,false
Código Javascript
:
Ver originalvar arrayOpt = new Array;
$('input[type=checkbox]').each(function() {
if ($(this).attr('name') == 'opcion[]') {
if ($(this).attr('checked') == 'checked') {
arrayOpt.push($(this).val());
} else{
arrayOpt.push($(this).val()==0);
}
}
});
como le asigno el valor 0 cero