Saltar al contenido

ejemplo de código javascript del contador de clic del botón

Ejemplo: recuento de JavaScript al hacer clic en un botón

var myButton = document.getElementById("my-button");
//Getting the button with "my-button" as id.
var myOutput = document.getElementById("my-output");
//Getting the id for the tag where you want to output your number
var startNumber = 0;

/*Creating a function where it adds 1 to the startNumber variable
for every time you click on myButton.*/
function addToNumber(){
	//Using template literal here.
	myOutput.innerHTML = `The current number is: ${1+startNumber++}`;
	/*Sets the startNumber to 1+ startNumber++.
 	This makes it look like it starts to count from 1 and not 0
    the first time you click the the button.*/
}
myButton.onclick = addToNumber;
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *