这是我现在为代码获得的唯一错误。
在定义之前使用了'setTimeout'。
由于这一行而发生:
setTimeout("a()");
为了通过验证,我该怎么做?这是我的完整代码:
/*global document, window */
function checkTime(i) {
'use strict';
if (i < 10) {
i = "0" + i;
}
return i;
}
function a() {
'use strict';
var oct = ["0", "1", "2", "3", "4", "5", "6", "7"],
octtime,
oct1,
oct2,
oct3,
oct4,
oct5,
oct6,
octvalue,
point = ".",
now = new Date(),
hours = now.getHours(),
minutes = now.getMinutes(),
seconds = now.getSeconds(),
h = checkTime(hours),
m = checkTime(minutes),
s = checkTime(seconds),
totsecs = [hours * 3600 + minutes * 60 + seconds + (now.getTime() % 1000) / 1000];
octtime = Math.floor(totsecs / (86400 / 262144));
oct1 = Math.floor(octtime / 32768);
octtime -= 32768 * oct1;
oct2 = Math.floor(octtime / 4096);
octtime -= 4096 * oct2;
oct3 = Math.floor(octtime / 512);
octtime -= 512 * oct3;
oct4 = Math.floor(octtime / 64);
octtime -= 64 * oct4;
oct5 = Math.floor(octtime / 8);
octtime -= 8 * oct5;
oct6 = octtime;
octvalue = point + oct[oct1] + oct[oct2] + oct[oct3] + oct[oct4] + oct[oct5] + oct[oct6];
document.getElementById('a').innerHTML = h + ":" + m + ":" + s;
document.getElementById('b').innerHTML = octvalue;
setTimeout("a()");
}
window.onload = a;
答案 0 :(得分:2)
如果您正在针对浏览器环境进行开发 - 请声明:set the environment而不是:
/*jslint browser: true, devel: true */
这将启用浏览器中的所有内容 - 因此您也可以删除窗口/文档全局变量。
当你在它的时候,把它传递给函数而不是字符串
setTimeout(a); // and not "a()"
答案 1 :(得分:1)
我认为你可以尝试这种方式,你已经有了这条正确的行
/*global document, window */
只需使用前缀setTimeout
window
即可
window.setTimeout(a);