[javascript] 카운트 다운
로빈아빠
본문
<input type="text" name="count" style="border-style:none;" size="1">초 후 지정 된 페이지로 이동합니다.</form> <!-- size는 초가 표시될 가로범위-->
<script>
<!--
var targetURL="이동할 페이지 경로"
var countdownfrom=5 //초
var currentsecond=document.redirect.count.value=countdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.count.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}
countredirect()
//-->
</script>
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:40:37 HTML에서 이동 됨]
<script>
<!--
var targetURL="이동할 페이지 경로"
var countdownfrom=5 //초
var currentsecond=document.redirect.count.value=countdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.count.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}
countredirect()
//-->
</script>
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:40:37 HTML에서 이동 됨]
관련링크
댓글목록
등록된 댓글이 없습니다.