
11/05/2012, 15:12
|
| | Fecha de Ingreso: noviembre-2004 Ubicación: Medellín
Mensajes: 121
Antigüedad: 20 años, 4 meses Puntos: 1 | |
Respuesta: onClick no funciona Ya lo arreglé
function incrementar(){
var inputText = document.getElementById('tx1');
var valor = parseInt(document.getElementById('tx1').value);
valor += 1;
inputText.value = valor; |