show time

Language/JAVASCRIPT 2010. 6. 4. 10:20


<div id="time"></div>
<SCRIPT LANGUAGE="JavaScript" event="onload" for="window">
     show_time();
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript">
      window.onload = function(){show_time()}; 
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript">
/* ********** 시계 보여주기 ********** */
function show_time(){
     var time = document.getElementById( "time" );

     // 1000ms 단위로 시간 갱신 시키기
     window.setInterval("get_current_time()", 1000);
     get_current_time();
}


/* ********** 현재 시간 가져오기 ********** */
function get_current_time(){
     var time = document.getElementById( "time" );
     var now = new Date();
     var week = new Array("일","월","화","수","목","금","토");


     var clock = now.getFullYear() + "년 ";
     clock += (now.getMonth() + 1) + "월 ";
     clock += now.getDate() + "일 ";
     clock += week[now.getDay()] + "요일 ";


     clock += now.getHours() + "시 ";
     clock += now.getMinutes() + "분 ";
     clock += now.getSeconds() + "초 ";


     time.innerHTML= clock;
}
</SCRIPT>

: