Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/07/2008, 00:38
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 23 años
Puntos: 772
Respuesta: Ayuda con tablero de numeros es urgente porfavor

Hola sluis_angel30

Un pequeño ejemplo:

Código:
<html>
<head>
<script type="text/javascript">
function poner(txt) {
  document.getElementById('algo').value += txt;
}
</script>
</head>
<body>
<form>
<p>
<span onclick="poner(this.innerHTML)">1</span>
<span onclick="poner(this.innerHTML)">2</span>
</p>
<input type="password" id="algo" />
</body>
</html>
Saludos,