window.onload=function(){
contents = new Array();
painted = new Array();
keys = 0;
for(var i = 0; i < 4; i++){
contents[i] = '';
painted[i] = false;
}
contents[0] = 1;
}
function clicked(canvasNumber){
if(contents[canvasNumber-1] == 1;){
alert("you won!");
}
}
我试图弹出一个说“你赢了!”单击画布1时,但我的内容数组的内容不匹配以触发该警报。我做错了什么?
答案 0 :(得分:1)
if(contents[canvasNumber-1] == 1;){
应该是
if(contents[canvasNumber-1] == 1){
if语句中没有分号
此外,您的索引很可能未对齐。