如图, 我在fvs编辑时, 模板 -> 页面加载结束事件中填写如下语句报错: //计数器 var index = 0; //计时器 var maxTime = 10; //当前计时 var time = maxTime; $('body').on('keydown mousemove mousedown', function(e) { time = maxTime; // reset }); var intervalId = setInterval(function() { time--; if (time <= 0) { if (index < ids.length) { var id = ids[index]; var name = names[index]; duchamp.linkageGlobal({USER_ID: id}); duchamp.linkageGlobal({USER_NAME: name}); // 执行语句 index++; } else { // 所有数据都处理完毕后重置计数器 index = 0; } time = maxTime; // reset timer } }, 1000); // 每隔一秒检查一次 |