setTimeout appears to execute too fast

前端 未结 2 1012
名媛妹妹
名媛妹妹 2020-12-19 02:47

I\'ve been fiddling around with setTimeout and setInterval, and I cannot get the code to execute the way I would like it to. My goal is to create a setInterval, which calls

2条回答
  •  情深已故
    2020-12-19 03:24

    This statement:

    setTimeout(clearInterval(intID), 10000);
    

    means, "call the function 'clearInterval' passing the value of variable 'intID', and then pass the return value of that and the number 10000 to the function 'setTimeout'."

    In other words, you're calling the function "clearInterval" and then passing the returned value to setTimeout().

    Instead, pass setTimeout() a function:

    setTimeout(function() { clearInterval(intID); }, 10000);
    

提交回复
热议问题