Hola Chicos estoy diseñando un servidor de tiempo y una fecha:
Si usted tiene un sitio web y desea mostrar la hora y fecha que aquí hay una idea!
T iempo
<html>
<head>
<script type="text/javascript">
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout('startTime()',500);
}
function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i;
}
</script>
<title>Clock</title></head>
<body onLoad="startTime()">
<div id="txt"></div>
</body>
</html>
- <html>
- <head>
- <script type="text/javascript">
- function startTime()
- {
- var today=new Date();
- var h=today.getHours();
- var m=today.getMinutes();
- var s=today.getSeconds();
- // add a zero in front of numbers<10
- m=checkTime(m);
- s=checkTime(s);
- document.getElementById('txt').innerHTML=h+":"+m+":"+s;
- t=setTimeout('startTime()',500);
- }
- function checkTime(i)
- {
- if (i<10)
- {
- i="0" + i;
- }
- return i;
- }
- </script>
- <title>Clock</title></head>
- <body onLoad="startTime()">
- <div id="txt"></div>
- </body>
- </html>
D comió
<script language="JavaScript">
<!--
function getCorrectedYear(year) {
year = year - 0;
if (year < 70) return (2000 + year);
if (year < 1900) return (1900 + year);
return year;
}
var lmod = new Date();
var monthname;
var lmonth = lmod.getMonth();
if (lmonth == 0) monthname = "January";
if (lmonth == 1) monthname = "February";
if (lmonth == 2) monthname = "March";
if (lmonth == 3) monthname = "April";
if (lmonth == 4) monthname = "May";
if (lmonth == 5) monthname = "June";
if (lmonth == 6) monthname = "July";
if (lmonth == 7) monthname = "August";
if (lmonth == <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\"><!-- s8) --> monthname = "September";
if (lmonth == 9) monthname = "October";
if (lmonth == 10) monthname = "November";
if (lmonth == 11) monthname = "December";
var yearstr = getCorrectedYear(lmod.getYear());
var outstr = monthname + " " + lmod.getDate() + ", " + yearstr;
document.write(outstr);
// -->
</script>
- <script language="JavaScript">
- <!--
- function getCorrectedYear(year) {
- year = year - 0;
- if (year < 70) return (2000 + year);
- if (year < 1900) return (1900 + year);
- return year;
- }
- var lmod = new Date();
- var monthname;
- var lmonth = lmod.getMonth();
- if (lmonth == 0) monthname = "January";
- if (lmonth == 1) monthname = "February";
- if (lmonth == 2) monthname = "March";
- if (lmonth == 3) monthname = "April";
- if (lmonth == 4) monthname = "May";
- if (lmonth == 5) monthname = "June";
- if (lmonth == 6) monthname = "July";
- if (lmonth == 7) monthname = "August";
- if (lmonth == <!-- s8) --><img src=\"{SMILIES_PATH}/icon_cool.gif\" alt=\"8)\" title=\"Cool\"><!-- s8) --> monthname = "September";
- if (lmonth == 9) monthname = "October";
- if (lmonth == 10) monthname = "November";
- if (lmonth == 11) monthname = "December";
- var yearstr = getCorrectedYear(lmod.getYear());
- var outstr = monthname + " " + lmod.getDate() + ", " + yearstr;
- document.write(outstr);
- // -->
- </script>
También puede cambiar los nombres de los meses en su propio idioma!
Por lo tanto, eso es!
Lo siento si no era de ninguna ayuda Im apenas un principiante en esto!
Gracias por leer!