Ver Mensaje Individual
  #13 (permalink)  
Antiguo 19/06/2012, 22:24
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 2 meses
Puntos: 6
Respuesta: enviar n datos mediante ajax

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 original
  1. var arrayOpt = new Array;
  2.               $('input[type=checkbox]').each(function() {
  3.                         if ($(this).attr('name') == 'opcion[]') {
  4.                             if ($(this).attr('checked') == 'checked') {
  5.                                 arrayOpt.push($(this).val());
  6.                                 } else{
  7.                                 arrayOpt.push($(this).val()==0);
  8.                                
  9.                                 }
  10.                         }
  11.                     });

como le asigno el valor 0 cero