我在一个项目上运行JSLint,我遇到了这个错误:
}
预计和之间正好有一个空格else
在这个代码块上:
// Check for the existance of the file created by firstrun.js
if (runOnce.exists) {
window.location = 'app:/core/firstrun.html';
}
// Check for version info
else if (!versionInfo.exists) {
window.location = 'app:/core/createVersion.html';
}
这// Check for version info
条线显然是导致问题的原因;但是克罗克福德会让我把这个评论放在哪里?
我显然可以将其更改else if
为 an,if
因为第一个if
包含重定向;但我有其他评论if/else if/else
不包含重定向。