| ||||
Buenas, hice un combinado de un par de scripts que tengo por ahí, a ver si te sirve
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Fecha completa</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript"> //http://javascript.tunait.com/ //[email protected] function fecha(){ fecha = new Date() mes = fecha.getMonth() diaMes = fecha.getDate() diaSemana = fecha.getDay() anio = fecha.getFullYear() dias = new Array('Domingo','Lunes','Martes','Miercoles','Jueves','Viernes','Sábado') meses = new Array('Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre') document.write('<span id="fecha">') document.write (dias[diaSemana] + ", " + diaMes + " de " + meses[mes] + " de " + anio) document.write ('</span>') } //http://javascript.tunait.com/ //[email protected] function hora(){ var fecha = new Date() var hora = fecha.getHours() var minuto = fecha.getMinutes() var segundo = fecha.getSeconds() if (hora < 10) {hora = "0" + hora} if (minuto < 10) {minuto = "0" + minuto} if (segundo < 10) {segundo = "0" + segundo} var horita = hora + ":" + minuto + ":" + segundo document.getElementById('hora').firstChild.nodeValue = horita tiempo = setTimeout('hora()',1000) } function inicio(){ document.write(' <span id="hora">') document.write ('000000</span>') hora() } </script> <style type="text/css"> <!-- #fecha { font-family: Tahoma, Verdana, Arial; font-size: 12px; color: #CC6600; } #hora { font-family: Tahoma, Verdana, Arial; font-size: 12px; color: #CC6600; } --> </style> </head> <body> <div align="center"> <script>fecha();inicio()</script> </div> </body> </html> |