holas a todos.Confio en que me puedan ayudar coneste problemita.
Tengo esta funcion validar y me funciona correctamente
Parte del código es:
<html>
<?function validar()
{
if (document.forms['formRegistroComprobante']['txtNroProductos'].value.length<1)
{
alert("Numero de Comprobantes nulo");
}
else
{
formRegistroComprobante.submit();
}
}
?>
<form action="editarCP.php" method="post" name="formRegistroComprobante" target="_self">
<input name="txtNroProductos" type="text" size="5" maxlength="2">
<input name="btnEditar" type="button" value=" Editar " onClick="validar()"/ >
</form>
</html>
Pero quiero emplearla tamien para el caso en el que ingrese un arreglo de cajas de texto(txtPrecioVenta[]).Y que al terminar de llenarlas me llame a validar.Y en esta funcion validar pueda acceder a los elementos de este arreglo(osea a todas las cajas de texto).Parte de Mi formulario es el sgte:
<form action="editarCP.php" method="post" name="formeditarCP" >
<table>
<?
for ($i=1;$i<=$txtNroProductos;$i++)
{?>
<tr height="22" width="20" bgcolor='#EEEEEE'><input type="text" size="10" name="txtPrecioVenta[]"/></td>
<?
}
?>
</table>
</form>