admin管理员组

文章数量:1347233

If I have set a timeout in javascript

var myTimeoutId = setTimeout( function(){
    ... do some stuff ....
}, 15000);

and a different event makes me need to have that timeout execute immediate, is there a way that I can use that stored id to execute the function? I know that I could store off a reference to that function, call clearTimeout on myTimeoutId and then call the function directly, but there's a decent amount of book keeping involved in that.

Is there a function along the lines of executeNow( myTimeoutId ) ?

If I have set a timeout in javascript

var myTimeoutId = setTimeout( function(){
    ... do some stuff ....
}, 15000);

and a different event makes me need to have that timeout execute immediate, is there a way that I can use that stored id to execute the function? I know that I could store off a reference to that function, call clearTimeout on myTimeoutId and then call the function directly, but there's a decent amount of book keeping involved in that.

Is there a function along the lines of executeNow( myTimeoutId ) ?

Share Improve this question asked Oct 15, 2013 at 16:58 BostonJohnBostonJohn 2,6812 gold badges28 silver badges48 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

No. You need to create the function separately so it can be called from anywhere:

function fn (){
    // ... do some stuff ....
}

var myTimeoutId = setTimeout( fn, 15000);

// one possibility
function other () {
    clearTimeout(myTimeoutId);
    fn();
}

in nodejs:

const timeout = setTimeout(() => {
  console.log("timeout function");
}, 10000);

// execute timeout function
timeout._onTimeout();
clearTimeout(timeout);

本文标签: force a javascript timeout function to execute immediatelyStack Overflow