Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/08/2009, 13:25
Avatar de goyo_
goyo_
 
Fecha de Ingreso: agosto-2009
Mensajes: 91
Antigüedad: 14 años, 9 meses
Puntos: 1
Respuesta: If anidados con validacion

Utiliza:

Código javascript:
Ver original
  1. if (!validaNombre(nombre)) {
  2. ...
  3. }
  4. else if (!validaMatricula(matricula)) {
  5. ...
  6. }
  7. else if (document.sumar1.total1.value=='0') {
  8. ...
  9. }
  10. else if (!validaIngreso(valora)) {
  11. ...
  12. }
  13. else {
  14. // ENVIAR LOS DATOS
  15. }