Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/12/2011, 12:32
Avatar de truman_truman
truman_truman
 
Fecha de Ingreso: febrero-2010
Ubicación: /home/user
Mensajes: 1.341
Antigüedad: 14 años, 10 meses
Puntos: 177
Respuesta: dos funciones parecidas sin causar conflicto

Código Javascript:
Ver original
  1. var total = 0;
  2.  
  3. function comprobarChecks()
  4. {
  5. var checks = document.getElementsByTagName("input"); //recojo todos los input
  6. for(i=0;i<checks.length;i++)
  7. {
  8. if(checks[i].type=="checkbox") //solo contemplo los de tipo checkbox
  9. {
  10. if (checks[i].checked) //si esta checkado agrego a total su valor
  11. {
  12. total += parseFloat(checks[i].value);
  13. checks[i].disabled = false;//////////////////////////////////////////////////////////
  14. document.formulario.total.value=total;}
  15.  
  16. }
  17. }
  18. }
__________________
la la la