현재시간 출력
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=euc-kr" />
<title>현재시각</title>
<script>
function printTime() {
var clock = document.getElementById("clock"); // 출력할 장소 선택
var now = new Date(); // 현재시간
var nowTime = now.getFullYear() + "년" + (now.getMonth()+1) + "월" + now.getDate() + "일" + now.getHours() + "시" + now.getMinutes() + "분" + now.getSeconds() + "초";
clock.innerHTML = nowTime; // 현재시간을 출력
setTimeout("printTime()",1000); // setTimeout(“실행할함수”,시간) 시간은1초의 경우 1000
}
window.onload = function() { // 페이지가 로딩되면 실행
printTime();
}
</script>
<body>
현재 <span id="clock"></span> 입니다<br />
</body>
</html>
'Web > Javascript' 카테고리의 다른 글
IFRAME에 입력한 데이터를 넘기기. (0) | 2008.10.21 |
---|---|
자바스크립트 입력값 숫자체크하기 (0) | 2008.10.21 |
라디오버튼 자동으로 체크하기 (3) | 2008.09.11 |
사용자의 입력,변경을 금지하기 (2) | 2008.09.11 |
Javascript 콤보박스 텍스트 가져오기 (0) | 2008.08.30 |