Home  >  Article  >  Web Front-end  >  JS real-time time

JS real-time time

巴扎黑
巴扎黑Original
2016-12-10 09:08:52849browse

<!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>


Statement:
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
Previous article:JS ad jumpNext article:JS ad jump