Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/02/2004, 07:45
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Hola, Stramonio.

Código modificado:

<script language="JavaScript">
function noVacio() {
var i;
var n = parseInt(document.frm.cantidad.value);
var bError = true;

for (i = 0; i < n; i++)
if (eval("document.frm.elemento" + i + ".value != ''"))
bError=false;
if (bError){
alert("Campo inválido");
eval("document.frm.elemento" + i + ".focus()");
}

if (!bError) alert("Ok");
}

</script>

Saludos,