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

오늘 날짜와 시간 구하기

페이지 정보

작성자 MintState 댓글 0건 조회 12,888회 작성일 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건 4 페이지
게시물 검색
모바일 버전으로 보기
CopyRight ©2004 - 2024, YesYo.com MintState. ™