This article mainly introduces how to implement javascript to display time on a web page. The example shows how to use javascript to display time in real time, for more information about how to use JavaScript to display time on a webpage, see the following example. Share it with you for your reference. The details are as follows:
This is a javascript code for webpage clock. It is implemented in pure javascript and is displayed in hours, minutes, and seconds. There are a lot of web page time display and web page clock. This is really simple. Good artists can further beautify and improve it on this basis.
The Code is as follows:
Simple Web page clock
Script
Window. onload = function ()
{
Var oClock = document. getElementById ("clock ");
Var aSpan = oClock. getElementsByTagName ("span ");
SetInterval (getTimes, 1000 );
GetTimes ();
Function getTimes ()
{
Var oDate = new Date ();
Var aDate = [oDate. getHours (), oDate. getMinutes (), oDate. getSeconds ()];
For (var I in aDate) aSpan [I]. innerHTML = format (aDate [I])
}
Function format ()
{
Return a. toString (). replace (/^ (\ d) $/, "0 $1 ")
}
}
Script
Minute/second
I hope this article will help you design javascript programs.