현재시간 출력
<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;
}
'공부 > 자바스크립트 jQuery' 카테고리의 다른 글
[자바스크립트] 팝업 차단 기능이 되어있는지 확인 (0) | 2014.06.25 |
---|---|
[jquery]disabled 한 라디오 버튼에 alert 경고를 띄울 때 (0) | 2014.06.23 |
텍스트 박스 클릭하면 안에 설명글 사라지는 거 (0) | 2014.04.29 |
asp 변수 값을 이용한 셀렉트 박스 기본 선택 (0) | 2014.04.28 |
주소 검색 팝업 javascript + asp (0) | 2014.04.22 |
댓글