当前位置: 代码迷 >> JavaScript >> 展示时间的js
  详细解决方案

展示时间的js

热度:93   发布时间:2012-10-29 10:03:53.0
显示时间的js

<script>function show(){
    var t=new Date();var h=t.getHours();var m=t.getMinutes();
    var s=t.getSeconds();if(h<10)h="0"+h;if(m<10)m="0"+m;if(s<10)s="0"+s;
    document.f1.h2.value=h+":"+m+":"+s;setTimeout("show()","1000")}show()
    </script>
  相关解决方案