본문 바로가기

Program 소스/JAVA Script

실시간 디지털 시계

원하는위치에 아래 소스 복사

<span id=tick2></span>
<script>
function show2(){
if (!document.all&&!document.getElementById)
return
thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2
var Digital=new Date()
var hours=Digital.getHours()
var minutes=Digital.getMinutes()
var seconds=Digital.getSeconds()
var dn="PM"
if (hours<12)
dn="AM"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var ctime=hours+":"+minutes+":"+seconds+" "+dn

// 텍스트 시계의 스타일을 설정 할 수 있습니다
thelement.innerHTML="<b style='font-size:12;color:blue;'>"+ctime+"</b>"

setTimeout("show2()",1000)
}
window.onload=show2
</script>