tengo este codigo
Código:
<script>
var tFormFieldCount = 1;
function MakeTextInput() {
document.getElementById('autor').innerHTML += 'Campo' + tFormFieldCount + ' ' +'<input type="text" name="Campo' + tFormFieldCount + '"><br><br>';
tFormFieldCount++;
}
</script>
y luego
Código HTML:
<form action="" method="post">
<div id="autor"></div>
<input type="button" value="Agregar Campo" onClick="MakeTextInput();">
</form>
el problema es que cuando se agrega otro campo, se borran las valores que el usuario ingreso en los imputs anteriores.
Ayuda, por favor.