tao_wang_89 发表于 2013-2-7 16:13:41

用js时钟

<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<10m=checkTime(m)s=checkTime(s)document.getElementById('txt').innerHTML=h+":"+m+":"+st=setTimeout('startTime()',500)}function checkTime(i){if (i<10)   {i="0" + i}return i}</script></head><body ><div id="txt"></div></body></html>
页: [1]
查看完整版本: 用js时钟