¸¶Ä§ ´Ð³Û,ÇÁ·ÎÇʼ¦ º¯°æÇÏ°í ù ÈçÀû ³²±â´Â±º¿ä...
|
|
|
<script language=javascript>function showTime()
{
var now=new Date()
var hours=now.getHours()
var minutes=now.getMinutes()
var seconds=now.getSeconds()
//var time_str=((hours>12)?hours-12:hours)
var time_str=hours
time_str+=((minutes<10)?":0":":")+minutes;
time_str+=((seconds<10)?":0":":")+seconds;
//time_str+=(hours>=12)?"P.M.":"A.M."
document.getElementById("spnTime").innerText = time_str;
timer_id=setTimeout("showTime()",800);
running_flag=true;
}
</script>
20:29:01
<script language=javascript>
showTime();
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|