Estoy intentado hacer el siguiente ejercicio:
- Haz una web con un input de tipo texto y dos botones “Añadir” y “Mostrar”
- Al pulsar el botón “Añadir”, se añadirá el contenido del input a un array vacío previamente creado (definir como variable global) y borrará el input (
document.forms["nomForm"] ["nomInput"].value = ""
). - Al pulsar el botón “Mostrar”, se mostrará la lista de todos los elementos, uno por línea*
Pero no sé cómo debo hacer para que se guarde tipo ARRAY
De momento tengo:
<body>
<form name="tercero" method="post">
<label for="texto">Escribe un texto:</label><br>
<input type="text" id="texto" name="texto" maxlength="35"><br>
<button type="button" onclick="añadir()">AÑADIR</button>
<button type="button" onclick="mostrar()">MOSTRAR</button>
<p id="demo"></p>
</form>
<script>
function añadir(){
var arraytexto = [];
document.getElementById('demo').innerHTML=arraytexto;
}
}
function mostrar(){
document.getElementById("demo").innerHTML = arraytexto.join("*");
}
</script>
</body>