loading..........
creo que tu problema se soluciona creando elementos, guiate por este código
Código PHP:
function NA_nuevo_file(_target,nombre)
{
var newFriend = document.createElement('input');
var _p = document.createElement('p');
newFriend.type = 'file';
newFriend.name = nombre;
newFriend.size = '50';
document.getElementById(_target).appendChild(_p);
document.getElementById(_target).appendChild(newFriend);
}
<input class="boton" value="Aumentar archivos" onclick="NA_nuevo_file('_NA_nuevo_file','archis[]');" type="button">
<fieldset id="_NA_nuevo_file">
<legend>Adjuntar archivos</legend>
<input size="50" name="archis[]" class="input-file" type="file">
</fieldset>
connection closed.