Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/05/2008, 11:43
Avatar de pateketrueke
pateketrueke
Modernizr
 
Fecha de Ingreso: abril-2008
Ubicación: Mexihco-Tenochtitlan
Mensajes: 26.399
Antigüedad: 16 años, 1 mes
Puntos: 2534
Re: Agregar un número indefinido de campos a un formulario

no es necesario un bucle....
por ej.

Javascript:

function mas_file(id)
{
var foo = '<input type="file" name="archivos[]"/>';

var id=document.getElementById(id);
id.innerHTML+=foo;
}

en tu enlace <a href="javascript:mas_file('mi_div')">Agregar++</a>