답변:
해당 시간 초과에 대한 참조를 저장 한 다음 clearTimeout
해당 참조 를 호출 할 수 있습니다 .
// in the example above, assign the result
var timeoutHandle = window.setTimeout(...);
// in your click function, call clearTimeout
window.clearTimeout(timeoutHandle);
// then call setTimeout again to reset the timer
timeoutHandle = window.setTimeout(...);
.clear()
시간이 오래 걸리는 객체 자체 가 없다는 것이 이상 합니다.
window.setTimeout
는 "timeout 객체"가 아닌 숫자 (타이머의 ID)를 반환 하기 때문 입니다.
clearTimeout () 및 setTimeout의 참조를 제공합니다 (숫자). 그런 다음 다시 호출하십시오.
var initial;
function invocation() {
alert('invoked')
initial = window.setTimeout(
function() {
document.body.style.backgroundColor = 'black'
}, 5000);
}
invocation();
document.body.onclick = function() {
alert('stopped')
clearTimeout( initial )
// re-invoke invocation()
}
이 예에서 5 초 안에 body 요소를 클릭하지 않으면 배경색이 검은 색이됩니다.
참고:
참고 : setTimeout 및 clearTimeout은 ECMAScript 기본 메소드가 아니라 글로벌 창 네임 스페이스의 Javascript 메소드입니다.
타임 아웃 "타이머"를 기억하고 취소 한 다음 다시 시작해야합니다.
g_timer = null;
$(document).ready(function() {
startTimer();
});
function startTimer() {
g_timer = window.setTimeout(function() {
window.location.href = 'file.php';
}, 115000);
}
function onClick() {
clearTimeout(g_timer);
startTimer();
}
이 타이머는 30 초 후에 "Hello"경고 상자를 시작합니다. 그러나 타이머 재설정 버튼을 클릭 할 때마다 timerHandle이 지워지고 다시 재설정됩니다. 일단 발사되면 게임이 종료됩니다.
<script type="text/javascript">
var timerHandle = setTimeout("alert('Hello')",3000);
function resetTimer() {
window.clearTimeout(timerHandle);
timerHandle = setTimeout("alert('Hello')",3000);
}
</script>
<body>
<button onclick="resetTimer()">Reset Timer</button>
</body>
var redirectionDelay;
function startRedirectionDelay(){
redirectionDelay = setTimeout(redirect, 115000);
}
function resetRedirectionDelay(){
clearTimeout(redirectionDelay);
}
function redirect(){
location.href = 'file.php';
}
// in your click >> fire those
resetRedirectionDelay();
startRedirectionDelay();
$(function() {
(function(){
var pthis = this;
this.mseg = 115000;
this.href = 'file.php'
this.setTimer = function() {
return (window.setTimeout( function() {window.location.href = this.href;}, this.mseg));
};
this.timer = pthis.setTimer();
this.clear = function(ref) { clearTimeout(ref.timer); ref.setTimer(); };
$(window.document).click( function(){pthis.clear.apply(pthis, [pthis])} );
})();
});
타이머를 재설정하려면 타이머 변수를 설정하고 지워야합니다.
$time_out_handle = 0;
window.clearTimeout($time_out_handle);
$time_out_handle = window.setTimeout( function(){---}, 60000 );
나는 이것이 오래된 실이라는 것을 알고 있지만 오늘 이것을 생각해 냈습니다.
var timer = []; //creates a empty array called timer to store timer instances
var afterTimer = function(timerName, interval, callback){
window.clearTimeout(timer[timerName]); //clear the named timer if exists
timer[timerName] = window.setTimeout(function(){ //creates a new named timer
callback(); //executes your callback code after timer finished
},interval); //sets the timer timer
}
그리고 당신은 사용하여 호출
afterTimer('<timername>string', <interval in milliseconds>int, function(){
your code here
});