24/03/2003, 15:28
|
| | | Fecha de Ingreso: noviembre-2002 Ubicación: Maracay, Edo. Aragua
Mensajes: 221
Antigüedad: 22 años Puntos: 1 | |
Estoy intentando lo siguiente para validar que solamente sean números:
<script language="JavaScript">
function noVacio() {
var i;
var n = parseInt(document.frm.cantidad.value);
var bError = false;
for (i = 0; i < n; i++){
bError = bError || (isNaN("document.frm.elemento" + i + ".value == ''"));
if (bError){
alert("Campo inválido");
eval("document.frm.elemento" + i + ".focus()");
break;
}
}
if (!bError) alert("Ok");
}
</script>
Pero todo lo ve como si no fueran números
Me imagino que el error esta en aqui:
bError = bError || (isNaN("document.frm.elemento" + i + ".value == ''"));
__________________ Aprender Siempre. Lema de Vida
José Molina |