Home > Web Front-end > JS Tutorial > A practical way to display time/day of the week on a web page using js array_javascript skills

A practical way to display time/day of the week on a web page using js array_javascript skills

WBOY
Release: 2016-05-16 17:43:19
Original
1428 people have browsed it
Copy code The code is as follows:



< ;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
}


< ;body onload="startTime()">




Copy code The code is as follows:


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template