YesYo.com MintState Forums
뒤로    YesYo.com MintState BBS > Tech > Javascript
검색
멤버이름    오토
비밀번호 
 

오늘 날짜와 시간 구하기

페이지 정보

작성자 MintState 댓글 0건 조회 12,948회 작성일 08-10-29 20:44

본문

오늘 날짜와 시간 구하기

---------- 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> 

댓글목록

등록된 댓글이 없습니다.

Total 178건 1 페이지
Javascript 목록
번호 제목 글쓴이 조회 날짜
178 MintState 12763 10-29
177 MintState 10791 10-29
176 MintState 10729 10-29
175 MintState 12240 10-29
열람중 MintState 12949 10-29
173 MintState 13013 10-29
172 MintState 10793 10-29
171 MintState 11891 10-29
170 MintState 10865 10-29
169 MintState 9941 10-29
168 MintState 10358 10-29
167 MintState 11056 10-29
166 MintState 13259 10-29
165 MintState 12161 10-29
164 MintState 12237 10-29
163 MintState 10514 10-30
162 MintState 11964 10-31
161 MintState 10032 10-31
160 MintState 13571 10-31
159 MintState 9223 10-31
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2024, YesYo.com MintState. ™