Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我收到以下错误:第 3 行字符 14 处的问题:无法设置未定义的属性“第一个”隐含全局:$ 2查看工作脚本jsFiddle 提前致谢
这似乎为 jsFiddle 修复了它(尽管我认为错误更多是某种 JSLint 警告,因为您的代码似乎工作正常) - 替换:
for (var i = 1; i <= num; i++) {
和:
var i = 1; for (; i <= num; i++) {
虽然,我会坚持使用您的原始代码 - 请记住 jsFiddle 只是一个 Alpha 版本。