웹마스터 팁

오늘 날짜와 시간

2003.05.20 18:16

Brown

날짜와 시간을 보여줍니다. 보니 날짜구하는 소스는 있는데 시간은 없더군요.
아무쪼록 도움이 되길 바랍니다.

---------- head 부분 시작 -------------

<script Language="JavaScript">
var timeStr, dateStr;
function clock() {
now= new Date();
hours= now.getHours();
minutes= now.getMinutes();
seconds= now.getSeconds();
timeStr= "" + hours;
timeStr+= ((minutes < 10) ? ":0" : ":") + minutes;
timeStr+= ((seconds < 10) ? ":0" : ":") + seconds;
document.clock.time.value = timeStr;
date= now.getDate();
month= now.getMonth()+1;
year= now.getYear();
dateStr= "" + month;
dateStr+= ((date < 10) ? "/0" : "/") + date;
dateStr+= "/" + year;
document.clock.date.value = dateStr;
Timer= setTimeout("clock()",1000);
}
</script>

------------ head 부분 끝 -----------------


------------ body 태그에 넣어주세요. -------------
<body onLoad="clock()">


------------ 페이지 적당한곳에 들어갈 부분 --------

<form name="clock">
시간:
<input type="text" name="time" size="8" value=""><br>
날짜:
<input type="text" name="date" size="8" value="">
</form>