如果定时器里有参数怎么写直接写不行,方法外加"也不行

来源:3-3 bug解决及定时器优化

qq_文兵

2016-01-06 12:32

timer = setInterval(autoPlay, 2000);
//autoChange(timer);

//自动播放
function autoPlay(){
    index++;
    if (index >= titles.length){
        index = 0;
    }
    changeOption(index);
}

如果在auto中加参数就只能执行一次了


写回答 关注

1回答

  • 李晓健
    2016-01-06 12:53:38
    timer = setInterval(function(){
        autoPlay(parm1,parm2); //这样就可以传参了
    }, 2000);


Tab选项卡切换效果

本课程详细介绍网页页面中最流行常用的tab切换效果

65465 学习 · 533 问题

查看课程

相似问题