秒表
作者:
新世界的冒险 | 来源:发表于
2018-07-16 17:34 被阅读0次<spam id="time"></spam>
<script>
function getDate(){
var objTime=new Date();
var hour=objTime.getHours();
var minute=objTime.getMinutes();
var second=objTime.getSeconds();
if(hour<10){
hour= '0'+hour;
}
if(minute<10){
minute='0'+minute;
}
if(second<10){
second='0'+second;
}
var str=hour+':'+minute+':'+second;
document.getElementById('time').innerHTML=str;
}
getDate()
var setTime=setInterval(function(){
getDate();
},1000)
</script>
本文标题:秒表
本文链接:https://www.haomeiwen.com/subject/zmyfaxtx.html
网友评论