Tema: contar clics
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/07/2009, 10:13
Avatar de Legoltaz
Legoltaz
 
Fecha de Ingreso: agosto-2008
Mensajes: 325
Antigüedad: 16 años, 5 meses
Puntos: 6
Respuesta: contar clics

Sería algo así:

Código HTML:
Ver original
  1. <input id="boton" type="button" value="Prueba 1" />

Código JavaScript:
Ver original
  1. var n = 1;
  2. document.getElementById('boton').onclick = function(){
  3.     n++;
  4.     this.value = "Prueba "+n;
  5. }