为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

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

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


正在回答

2 回答

timer = setInterval(function(){
    autoPlay(parm1,parm2); //这样就可以传参了
}, 2000);


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信