timer = setInterval(autoPlay, 2000); //autoChange(timer); //自动播放 function autoPlay(){ index++; if (index >= titles.length){ index = 0; } changeOption(index); }
如果在auto中加参数就只能执行一次了
timer = setInterval(function(){ autoPlay(parm1,parm2); //这样就可以传参了 }, 2000);