본문 바로가기
공부/자바스크립트 jQuery

자바스크립트 현재 시간 출력

by Ohming 2014. 6. 16.
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

현재시간 출력

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


- 출처 : http://theqoop.tistory.com/94



내가 하던 작업이 6시 이내 답변은 업무 마감시간을 고려해서 1시까지만 신청, 3시간 이내 답변은 3시까지, 1시간 이내 답변은 5시까지만 신청이 가능하도록 구현해야 했음.

그래서 요런식으로 라디오 버튼을 선택할 수 없게 함.

//1,3,6 체크 시간에 따라 다르게

var now = new Date();

if(now.getHours()>13){

fx.elements['counsel_type'][1].disabled = true;

if(now.getHours()>15){

fx.elements['counsel_type'][2].disabled = true;

if(now.getHours()>17){

fx.elements['counsel_type'][3].disabled = true;

}



댓글