码迷,mamicode.com
首页 > Web开发 > 详细

在网页上显示一个钟表

时间:2019-04-29 20:52:44      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:type   pre   out   time()   cond   timeout   function   java   oda   

<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>
</head>

<body onload="startTime()">
<div id="txt"></div>
</body>
</html>

  

在网页上显示一个钟表

标签:type   pre   out   time()   cond   timeout   function   java   oda   

原文地址:https://www.cnblogs.com/zxrxzw/p/10792505.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!