| |||
Re: como agrego la fecha y hora automatica en una tabl hola juannn, aca te dejo el codigo para la hora.. ubicalo en tu pagina donde mas te guste y tendras la hora en tu pagina ------------------- <script type="text/vbscript"> document.write("La Fecha Es " & date()) document.write("<BR>") document.write("La hora es " & time()) </script ---------------------- salu2 5stone :P |
| ||||
Re: como agrego la fecha y hora automatica en una tabl Lo malo de esta forma es que está en vbscript y sólo explorer lo comprenderá. Si quieres usar uno en javascript podrías usar algo asi: <script language="javascript"> var fecha=new Date() var anio=fecha.getYear() if (anio < 1000) anio+=2000 var dia=fecha.getDay() var mes=fecha.getMonth() var diames=fecha.getDate() if (diames<10) diames="0"+diames reloj=fecha.getTime() var listadias=new Array("Domingo","Lunes"," Martes","Miercoles","Jueves&qu ot;,"Viernes","Sabado") var listames=new Array("Enero","Febrero"," Marzo","Abril","Mayo",&qu ot;Junio","Julio","Agosto" ;,"Septiembre","Octubre"," ;Noviembre","Diciembre") function escribirFecha() { document.write(listadias[dia] + ", " + diames + " de " + listames[mes] + " del " + anio ) } </script> Luego donde quieras que aparezca la fecha (por ejemplo, dentro de una celda) se lo pides asi: <td> <script language="javascript"> escribirFecha() </script> </td> Suerte |
| ||||
Re: como agrego la fecha y hora automatica en una tabl Me faltó la hora, <td> <script language="javascript"> escribirFecha() <br> document.write (reloj); </script> </td> |
| ||||
Re: como agrego la fecha y hora automatica en una tabl Hola Juan: Para el año también se puede usar "getFullYear()", y no necesitas usar el "if" que puso tunait. Saludos |
| |||
Re: como agrego la fecha y hora automatica en una tabl Yo lo he hecho sin ningun problema. Abre un documento y pega todo este código tal cual está (que es lo que ha dicho Tunait) <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF"> <script language="javascript"> var fecha=new Date() var anio=fecha.getYear() if (anio < 1000) anio+=2000 var dia=fecha.getDay() var mes=fecha.getMonth() var diames=fecha.getDate() if (diames<10) diames="0"+diames reloj=fecha.getTime() var listadias=new Array("Domingo","Lunes"," Martes","Miercoles","Jueves&qu ot;,"Viernes","Sabado") var listames=new Array("Enero","Febrero"," Marzo","Abril","Mayo",&qu ot;Junio","Julio","Agosto" ;,"Septiembre","Octubre"," ;Noviembre","Diciembre") function escribirFecha() { document.write(listadias[dia] + ", " + diames + " de " + listames[mes] + " del " + anio ) } </script> <table width="80%" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <script language="javascript"> escribirFecha() </script> </td> </tr> </table> </body> </html> |