21/10/2010, 02:42
|
| | Fecha de Ingreso: diciembre-2003 Ubicación: Ibiza
Mensajes: 8
Antigüedad: 20 años, 11 meses Puntos: 0 | |
¿Por qué no funciona esto? <script type="text/javascript" language="javascript">
var timeOut = 10;
function PonerTimeOut()
{
texto = document.getElementById("txtTimeOut");
texto.value = "Tiempo restante para actualización: " + timeOut.toString() + " segundos.";
if(timeOut > 0)
{
document.write(timeOut.toString());
timeOut--;
}
else
timeOut = 10
}
function animar()
{
window.location="./modificar_orden_elementos.php";
}
setTimeout(PonerTimeOut, 1000);
setTimeout(animar, 10000);
</script>
// La función animar si funciona pero la de poner el tiempo restante PonerTimeOut no hace ni caso solo muestra 10 segundos restantes pero no resta ¿?.
Gracias. |