━━━━ Perhaps/•……태그 HTML

작업표시줄에 시계넣기

크리아이 2007. 10. 23. 14:46
<!--작업표시줄에 시계넣기-->
<script language="xxJavaScript">
<!--
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 [안내]태그제한으로등록되지않습니다-xxonLoad="updateTime()">