我正在尝试创建一个自动更改的“旋转”DIV。我有一个函数 switchRotator(id) 使用 JQuery 更改 DIV 的内容。这是导致错误的函数:
function launchTimedRotator(){
//timedSwitch is a boolean value that can be enabled/disabled with buttons
if (timedSwitch) {
if (counter<2) {
counter++;
} else {
counter = 1;
}
switchRotator(counter);
setInterval("launchTimedRotator()",3000);
return null;
}
};
正如你所看到的,我试图通过最后从自身调用函数来使用递归。我在 Google Chrome 的开发者工具中收到的错误是:Uncaught ReferenceError: launchTimedRotator is not defined
提前致谢