¾Æ·¡ »óÅÂÇ¥½ÃÁÙ¿¡ ½Ã°£À» Ç¥½ÃÇØÁÝ´Ï´Ù.
<head>¿Í</head>»çÀÌ¿¡ ¾Æ·¡ ¼Ò½º¸¦ ³ÖÀ¸¼¼¿ä
<script language="JavaScript">
<!--
var flasher = false
function updateTime() {
var now = new Date()
var theHour = now.getHours()
var theMin = now.getMinutes()
var theSec = now.getSeconds()
var theTime = "" + ((theHour > 12) ? theHour - 12 : theHour)
theTime += ((theMin < 10) ? ":0" : ":") + theMin
theTime += ((theSec < 10) ? ":0" : ":") + theSec
theTime += (theHour >= 12) ? " pm" : " am"
theTime += ((flasher) ? " " : "*")
flasher = !flasher
window.status = "ÇöÀç ½Ã°£Àº : " + theTime
timerID = setTimeout("updateTime()",1000)
}
//-->
</script>
¾Æ·¡¼Ò½º´Â <body> »çÀÌ¿¡ ³ÖÀ¸¼¼¿ä
<body onLoad="updateTime()">