Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/06/2014, 20:40
Avatar de Italico76
Italico76
 
Fecha de Ingreso: abril-2007
Mensajes: 3.303
Antigüedad: 17 años, 7 meses
Puntos: 292
Respuesta: problema con checkbox

- Tu ultimo input esta "mal formado":

Cita:
<th><input type="checkbox" id="check5" name=" onclick="selection();" /> </th>

- Y..

Código Javascript:
Ver original
  1. onclick="selection();"

No seria...?

Código Javascript:
Ver original
  1. onclick="selection(this);"

<< o tu funcion selection() debe adivinar quien hizo la invocacion ?


Mi SUGERENCIA...es hacerlo asi:

Código Javascript:
Ver original
  1. <th><input type="checkbox" id="check1" name="check1" onclick="selection(this);" /> </th>
  2.             <th><input type="checkbox" id="check2" name="cehck2" onclick="selection(this);" /> </th>
  3.             <th><input type="checkbox" id="check3" name="check3" onclick="selection(this);" /> </th>
  4.             <th><input type="checkbox" id="check4" name="check4" onclick="selection(this);" /> </th>
  5.             <th><input type="checkbox" id="check5" name="check5" onclick="selection(this);" /> </th>
  6.  
  7.  
  8. <script>
  9. function selection(o)
  10. {  
  11.     if(o.checked){
  12.         console.log('El check '+o.id+' esta marcado');
  13.     }else              
  14.         console.log('El check '+o.id+' NO esta marcado');
  15. }  
  16. </script>
__________________
Salu2!

Última edición por Italico76; 24/06/2014 a las 20:51