JavaScript 시, 분, 초 시간 코드입니다. 시간이 10보다 작으면 0을 추가하세요.
<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 which<10 h=checkTime(h) m=checkTime(m) s=checkTime(s) document.getElementById('wux').innerHTML=h+":"+m+":"+s t=setTimeout('startTime()',100) } //add a zero in front of numbers which<10 function checkTime(i) { if (i<10) { i="0" + i } return i } </script> </head> <body onload="startTime()"> <div id="wux"> </div> </body> </html>
더 많은 JavaScript 시, 분, 초 시간 코드(자동 제로 패딩) 관련 기사를 보려면 PHP 중국어 웹사이트를 주목하세요!