Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/08/2009, 14:30
Avatar de tampon
tampon
 
Fecha de Ingreso: julio-2009
Mensajes: 420
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: If anidados con validacion

Hola de nuevo goyo, si ya lo intente pero me manda el siguiente error

Cita:
Detalles de error de página web

Agente de usuario: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322)
Fecha: Thu, 13 Aug 2009 20:26:22 UTC


Mensaje: Syntax error
Línea: 351
Carácter: 2
Código: 0
URI: js/action-ZCTec.js
se que la sintaxis es correcta pero la linea de error es:

Código js:
Ver original
  1. if(!validaNombre(nombre)){
  2.         alert("El nombre ingresado contiene caracteres o longitud invalida.");
  3.         boton.disabled=true; document.sumar1.okay1.checked = false;
  4.         document.sumar1.nombre.style.backgroundColor="#FFD2DB";
  5.         document.getElementById("error").innerHTML="";
  6.     }
  7.     else if(!validaMatricula(matricula)){
  8.         alert("La matricula ingresada contiene caracteres o longitud invalida.");
  9.         boton.disabled=true; document.sumar1.okay1.checked = false;
  10.         document.sumar1.matricula.style.backgroundColor="#FFD2DB";
  11.         document.getElementById("error").innerHTML="";
  12.     }
  13.     valora=eliminaEspacios(valora);
  14.     else if(!validaIngreso(valora))        // <---------------- ESTA ES LA 351
  15.     {
  16.         alert("El folio ingresado contiene caracteres o longitud invalida.");
  17.         boton.disabled=true; document.sumar1.okay1.checked = false;
  18.         document.sumar1.folio.style.backgroundColor="#FFD2DB";
  19.         document.getElementById("error").innerHTML="";
  20.     }
  21.     else if(document.sumar1.total1.value=='0'){
  22.         alert("La cantidad del deposito debe ser diferente a cero.");
  23.         boton.disabled=true; document.sumar1.okay1.checked = false;
  24.         document.sumar1.total1.style.backgroundColor="#FFD2DB";
  25.         document.getElementById("error").innerHTML="";
  26.     }
  27.     else
  28.     {...}