Heim > Fragen und Antworten > Hauptteil
Es gibt zwei Funktionen a() und b(). Ich möchte zuerst a ausführen, dann b nach einem Intervall von drei Sekunden ausführen, a erneut nach einem Intervall von drei Sekunden ausführen und dann b nach einem Intervall von drei Sekunden ausführen . Das geht weiter... Wie schreibe ich?
怪我咯2017-05-19 10:46:25
function a() {
setTimeout(b, 3000);
console.info('This is a!');
}
function b() {
setTimeout(a, 3000);
console.info('This is b!');
}
a();
PHP中文网2017-05-19 10:46:25
function start() {
a()
}
var timer;
function a() {
clearTimeout(timer);
timer = setTimeout(b, 3000);
}
function b() {
clearTimeout(timer);
timer = setTimeout(a, 3000);
}
为情所困2017-05-19 10:46:25
var flag = true;
var s = setInterval(function(){
if(flag){
a();
}else{
b()
}
flag =!flag
},3000)