Reloj digital
Página 1 de 1.
Reloj digital
- Código:
<!DOCTYPE HTML PUBLIC
"-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Taller de JS: Reloj I</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<SCRIPT language=JavaScript>
<!--
var timerID= null;
var timerActivo= false;
function PararReloj () {
if (timerActivo)
clearTimeout (timerID);
}
function ActivarReloj () {
PararReloj();
Reloj();
}
function Reloj () {
var fecha= new Date();
var horas= fecha.getHours();
var minutos= fecha.getMinutes();
var segundos= fecha.getSeconds();
var horaStr= ""; //inicializamos con la cadena vacia
horaStr+= ((horas<10)?"0":"")+horas;
horaStr+= ((minutos<10)?":0":":")+minutos;
horaStr+= ((segundos<10)?":0":":")+segundos;
document.clock.caja.value= horaStr;
window.status= horaStr;
timerID= setTimeout("Reloj()",1000);
timerActivo= true;
}
// -->
</SCRIPT>
<META content="Microsoft FrontPage 4.0" name=GENERATOR></HEAD>
<BODY text=#000000 bgColor=#ffffff onload=ActivarReloj()>
<CENTER>
<FORM name=clock><INPUT size=8 name=caja> </FORM></CENTER>
<HR>
</BODY></HTML>
Página 1 de 1.
Permisos de este foro:
No puedes responder a temas en este foro.