Estoy intentando poner la fecha y la hora con el código que aparace en las FAQs pero no se que estoy haciendo mal que no me mustra nada. Éste es mi código:
Código HTML:
<html> <head> <title>Documento sin título</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script language="JavaScript" type="text/JavaScript"> function actualizaReloj(){ marcacion = new Date() Hora = marcacion.getHours() Minutos = marcacion.getMinutes() Segundos = marcacion.getSeconds() if (Hora<=9) Hora = "0" + Hora if (Minutos<=9) Minutos = "0" + Minutos if (Segundos<=9) Segundos = "0" + Segundos var Mes = new Array("01","02","03","04","05","06","07","08","09","10","11","12"); var Hoy = new Date(); var Anio = Hoy.getFullYear(); var Fecha = "" + Hoy.getDate() + "-" + Mes[Hoy.getMonth()] + "-" + Anio + ""; var Inicio, Script1, Script2, Final1, Final2, Total Inicio1 = " <div align=left><font color=#3B539A size=1><strong>" Script1 = Fecha Final1 = "</strong> / " Script2= Hora + ":" + Minutos + ":" + Segundos Final2="</font></div>" Total = Inicio1+ Script1+Final1+Script2 + Final2 document.getElementById('Fecha_Reloj').innerHTML = Total setTimeout("actualizaReloj()",1000) } </script> </head> <body onload="actualizaReloj"> <div id="fecha" style="position:absolute; width:200px; height:33px; z-index:2; left: 9px; top: 452px; visibility: visible;"> <table width="183" border="0" cellspacing="0" cellpadding="0"> <tr> <td id="Fecha_Reloj"> </td> </tr> </table> </div> <div id="fondo" style="position:absolute; width:200px; height:115px; z-index:1; left: 0; top: 0; visibility: visible;"><img src="sistema_monjas.gif" width="780" height="500" border="0" usemap="#Map"> <map name="Map"> <area shape="rect" coords="684,478,685,481" href="#"> </map> </div> </body> </html>
Muchas gracias y saludos