我正在为我和我的朋友玩的台式策略游戏制作JavaScript骰子滚轴,但遇到了麻烦。基本上有一个不规则的命中表,所以我无法使用公式(据我所知)来判断结果,相反,我有一堆开关以及if .. else语句来确定它们是否为成功或失败。
由于大量
我已经纠正了JsLint显示的所有其他错误,但是这些错误似乎没有任何意义,因为它们所引用的字符位于单词中间。

这是jsFiddle:

http://jsfiddle.net/UEKh6/10/

Error:
Problem at line 19 character 12: Missing semicolon.
var aContnt["<h1>Broken History - Dice roller tool</h1><p>Choose one of the f...

Problem at line 19 character 1249: Expected an assignment or function call and instead saw an expression.
var aContnt["<h1>Broken History - Dice roller tool</h1><p>Choose one of the f...

Implied global: prompt 64,66,262,264,441, morale 441,443, iRoll 442,443

最佳答案

在数组的开头和变量声明之间需要一个=符号。

var aContnt = ["

http://jsfiddle.net/rlemon/UEKh6/14/查看添加的=

关于javascript - 令人困惑的JSLINT错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11612072/

10-12 12:47
查看更多