Home > Web Front-end > JS Tutorial > body text

JS real-time time

巴扎黑
Release: 2016-12-10 09:08:52
Original
848 people have browsed it

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="UTF-8"> 
<title>JS 实时的时间</title> 
</head> 
<script> 
function startTime(){ 
var today=new Date(); 
var h=today.getHours(); 
var m=today.getMinutes(); 
var s=today.getSeconds();// 在小于10的数字 前加一个‘0’ 
m=checkTime(m); 
s=checkTime(s); 
document.getElementById(&#39;txt&#39;).innerHTML=h+":"+m+":"+s; 
t=setTimeout(function(){startTime()},500); 
} 
function checkTime(i){ 
if (i<10){ 
i="0" + i; 
} 
return i; 
} 
</script> 
<body onload="startTime()"> 
<div id="txt"></div> 
</body> 
</html>
Copy after login


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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!