Generar otro reloj, fecha y hora a intervalos de u |
Post Reply |
Author | |
Programador
Expert@ Joined: 09 Mayo 2009 Location: San Pedro Alc. Status: Offline Points: 54 |
Post Options
Thanks(0)
Posted: 20 Enero 2011 at 8:33am |
Generar otro reloj, fecha y hora a intervalos de un segundo <html>
<head> <title>Proforma de Com*****dora</title> <script> function relojFecha(){ var mydate=new Date();var year=mydate.getYear(); if (year < 1000)year+=1900; var day=mydate.getDay(); var month=mydate.getMonth(); var daym=mydate.getDate(); if (daym<10)daym="0"+daym; var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado"); var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto", "Septiembre","Octubre","Noviembre","Diciembre"); var horas = mydate.getHours(); horas = (horas<10)?"0"+horas:horas; var minutos = mydate.getMinutes(); minutos = (minutos<10)?"0"+minutos:minutos; var segundos = mydate.getSeconds(); segundos = (segundos<10)?"0"+segundos:segundos; document.getElementById("idReloj").innerHTML = "<"+"small><"+"font color='000000' face='Verdana'>"+ dayarray[day]+" "+daym+" de "+montharray[month]+" de "+ year+" "+horas+":"+minutos+":"+segundos+"<"+"/font><"+"/small>"; setTimeout('relojFecha()',1000); } </script> </head> <body onload="relojFecha()"> <p id="idReloj"></p> </body> </html> Téngase en cuenta que, a diferencia del anterior ejemplo, el reloj está orientado a usar setTimeout, que permite lanzar la función relojFecha cada segundo. Por ello, no se puede parar y se lanza usando el evento onload de body.
|
|
Sponsored Links | |
Post Reply | |
Tweet |
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You can vote in polls in this forum |