13/03/2008, 01:36
|
| Colaborador | | Fecha de Ingreso: febrero-2002 Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses Puntos: 772 | |
Re: aumentar variable cada x tiempo Hola mytwm
Prueba así:
Código:
<script type="text/javascript">
variable1 = 100;
function sumar() {
variable1 += .1;
// mostrar el valor de variable1
}
</script>
</head>
<body onload = "setInterval('sumar()',1000)">
Saludos, |