pregunta de java pregunta jsp, ¿cómo mostrar la cuenta regresiva del reloj en la página jsp? Requiere un tiempo total de 30 minutos y luego cuenta atrás.
lt;htmlgt;
lt;headgt;
lt;SCRIPT LANGUAGE="JavaScript"gt;
var maxtime = 30*30 // Media hora , Cuente por segundos, ¡ajústese!
function CountDown(){
if(maxtimegt;=0){
minutos = Math.floor(maxtime/30); p> segundos = Math.floor(maxtime30);
msg = "Quedan " minutos "minutos " segundos "segundos" hasta el final
document.all["timer; "].innerHTML=msg;
if(maxtime == 5*30) alert('¡Atención, todavía quedan 5 minutos!');
--maxtime;
}
else{
clearInterval(timer);
alert("¡Se acabó el tiempo!"
);}
}
temporizador = setInterval("CountDown()", 1000
lt;/SRIPTgt
lt;/headgt;
lt;bodygt;
lt;div id="timer" style="color: rojo"gt;/divgt;
lt;/bodygt;
lt;/htmlgt;