27/03/2004, 16:37
|
| | Fecha de Ingreso: marzo-2004 Ubicación: Buenos Aires, Argentina
Mensajes: 3
Antigüedad: 20 años, 9 meses Puntos: 0 | |
Problemita con un Script Hola a todos, tengo un script de fecha y hora... lo he insertado en mi pagina, pero no me gusta el formato que tiene. Lo deseo en Arial 10 y en color #CCCCCC
Alguien me puede decir cómo puedo cambiarlo. Aqui la una muestra de lo que tengo
<!-- hide from old browsers
function GetMonth(intMonth){
var MonthArray = new Array("Enero", "Febrero", "Marzo",
"Abril", "Mayo", "Junio",
"Julio", "Agosto", "Septiembre",
"Octubre", "Noviembre", "Diciembre")
return MonthArray[intMonth]
}
function getDateStr(){
var today = new Date()
var year = today.getYear()
if(year<1000) year+=1900
var todayStr = GetMonth(today.getMonth()) + " " + today.getDate()
todayStr += ", " + year
return todayStr
}
//-->
<!-- hide from old browsers
document.write(getDateStr())
//-->
Muchas Gracias
Michel |