Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/05/2004, 01:06
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 9 meses
Puntos: 772
Hola, danielz2. Bienvenido al Foro.

Prueba este código:
Código PHP:
<html>
<
head>
<
script>
function 
anadir(frm) {
    
num=frm.hijos.value;
    for(
i=0;i<num;i++) {
        
elem=document.createElement('input');
        
elem.id='hijo'+i;
        
frm.appendChild(elem);
    }
}
</script>
</head>

<body>
<form>
<input type="text" id="hijos"/>
<input type="button" onclick="anadir(this.form)"/>
</form>
</body>
</html> 
Saludos,