시간 카운트
js
<script type="text/javascript">
function flowtime(){
chantime_m = setTimeout("timebar_m()", 1000);
}
function timebar_m(){
var ti = document.all.timebox_m.value;
ti = ti - 1;
if(ti < 1){
document.all.result_m.value = "end count";
}else{
var sec = ti % 60;
var min = (ti - sec) / 60;
window.document.all.sec_m.value = sec;
window.document.all.min_m.value = min;
window.document.all.timebox_m.value = ti;
chantime = setTimeout("timebar_m()", 1000);
}
}
function cleartime(){
clearTimeout(chantime_m);
}
flowtime();
</script>
jsp
<body>
<input type ="text" name = "timebox_m" value = "120" size = "10"> 초 <br>
<input type ="text" name = "min_m" value = "120" size = "3"> 분 <br>
<input type ="text" name = "sec_m" value = "120" size = "3"> 초 <br>
<input type ="text" name = "result_m">
</body>
'Programming > javascript' 카테고리의 다른 글
[javascript] 쿠키를 이용한 로그인 아이디 저장 (0) | 2014.12.26 |
---|---|
[javascript] 자바스크립트 차트 (0) | 2014.12.01 |
[javascript] 파일 확장자 체크 (0) | 2014.10.27 |
[javascript] 변수값 설정 시 default 사용 (short-circuit 트릭) (0) | 2014.10.20 |
[javascript] String 프로토타입 정리 (0) | 2014.09.18 |