最新回答 / 上帝说我要光
第二个问题 if (mywin[k] == 1) { myScore[i][j] += 500; } else if (mywin[k] == 2) { myScore[i][j] += 600; } else if (mywin[k] == 3) { ...
2016-04-21
已采纳回答 / 小爬虫8036
javascript的执行顺序是从上到下,for(var i=0; i<count; i++)里的count是在后面定义且经过循环自增的,你可以在这里alert(count)看下结果应该是undefiend.
2016-04-12