我有一个带有setTimeout的函数。该函数的第一部分将超时设置为清除,以防万一在setTimeout触发之前再次调用它。

clearTimeout不会清除计时器。我已经在调用setTimeout的函数中起作用的部分之后测试了clearTimeout(spinTimer)。为什么一开始不起作用?

我已经全局声明了变量:

var spinTimer;

function cakeCubeSpin(whereTo){

    clearTimeout(spinTimer);

    ... do some stuff

    switch(whereTo){
    case 1:
        var spinTimer = setTimeout( function(){
            $('#ccPanel4').css(leftReset);
            $('#ccPanel2').css(rightReset);
            $('#ccPanel3').css(backReset);
            $('#ccPanel1').css(frontReset);

            $('#cakeCubeWrapper').css(wrapReset);

            $('#ccPanel1').addClass('cc-current');
        }, ccSpeed);

    break;

    ... more stuff

}

最佳答案

您正在使用以下行重新定义spinTimer的范围:

var spinTimer = setTimeout( function(){


我想你的意思是:

spinTimer = setTimeout( function(){

09-25 20:30