Reloj con Javascript
<script language="JavaScript">
</P><p>
</P><p>
function mueveReloj(){ </P><p>
</P><p>
momentoActual = new Date() </P><p>
</P><p>
hora = momentoActual.getHours() </P><p>
</P><p>
minuto = momentoActual.getMinutes() </P><hr
class=more>
<p>
</P><p>
segundo = momentoActual.getSeconds() </P><p>
</P><p>
</P><p>
</P><p>
str_segundo = new String (segundo) </P><p>
</P><p>
if (str_segundo.length == 1) </P><p>
</P><p>
segundo = "0" + segundo </P><p>
</P><p>
</P><p>
</P><p>
str_minuto = new String (minuto) </P><p>
</P><p>
if (str_minuto.length == 1) </P><p>
</P><p>
minuto = "0" + minuto </P><p>
</P><p>
</P><p>
</P><p>
str_hora = new String (hora) </P><p>
</P><p>
if (str_hora.length == 1) </P><p>
</P><p>
hora = "0" + hora </P><p>
</P><p>
</P><p>
</P><p>
horaImprimible = hora + " : " + minuto + "
: " + segundo </P><p>
</P><p>
</P><p>
</P><p>
document.form_reloj.reloj.value = horaImprimible
</P><p>
</P><p>
</P><p>
</P><p>
setTimeout("mueveReloj()",1000)
</P><p>
</P><p>
} </P><p>
</P><p>
</script>
<body onload="mueveReloj()">
</body>
Vemos aquí el reloj funcionando...
<form name="form_reloj">
</form>
<input name="reloj"
onfocus="window.document.form_reloj.reloj.blur()" size="10"
style="background-color: black; color: white; font-family: Verdana, Arial,
Helvetica; font-size: 8pt; text-align: center;" type="text"
/>
No hay comentarios:
Publicar un comentario