forked from marquez.juan/clase-9-eventos
20 lines
539 B
JavaScript
20 lines
539 B
JavaScript
const botonf = document.getElementById("boton1");
|
|
const parrafob = document.getElementById("parrafo1");
|
|
|
|
let contador = 0;
|
|
|
|
botonf.addEventListener("click", () => {
|
|
contador++;
|
|
parrafob.textContent = "Boton clickeado " + contador + " veces";
|
|
}) // Ejercicio 1
|
|
|
|
|
|
|
|
const textoCaracter = document.getElementById("text");
|
|
const parrafoCaracter = document.getElementById("carac0");
|
|
|
|
|
|
textoCaracter.addEventListener("input", () => {
|
|
parrafoCaracter.textContent = "Cantidad de caracteres: " + textoCaracter.value.length
|
|
}) // Ejercicio 2
|