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 originalif(!validaNombre(nombre)){
alert("El nombre ingresado contiene caracteres o longitud invalida.");
boton.disabled=true; document.sumar1.okay1.checked = false;
document.sumar1.nombre.style.backgroundColor="#FFD2DB";
document.getElementById("error").innerHTML="";
}
else if(!validaMatricula(matricula)){
alert("La matricula ingresada contiene caracteres o longitud invalida.");
boton.disabled=true; document.sumar1.okay1.checked = false;
document.sumar1.matricula.style.backgroundColor="#FFD2DB";
document.getElementById("error").innerHTML="";
}
valora=eliminaEspacios(valora);
else if(!validaIngreso(valora)) // <---------------- ESTA ES LA 351
{
alert("El folio ingresado contiene caracteres o longitud invalida.");
boton.disabled=true; document.sumar1.okay1.checked = false;
document.sumar1.folio.style.backgroundColor="#FFD2DB";
document.getElementById("error").innerHTML="";
}
else if(document.sumar1.total1.value=='0'){
alert("La cantidad del deposito debe ser diferente a cero.");
boton.disabled=true; document.sumar1.okay1.checked = false;
document.sumar1.total1.style.backgroundColor="#FFD2DB";
document.getElementById("error").innerHTML="";
}
else
{...}