0

所以我有一个 javascript 函数,它将多维数组值推送到如下参数:

function mouseHandle(x,y){
    for(var i=0; i<buttonPos.length; i++){
        if(x>buttonPos[i][0] && x<buttonPos[i][2]){
            if(y>buttonPos[i][1] && y<buttonPos[i][3]){
                eventButton(buttonPos[i][4]);
            };
        };
    };
};

这将 buttonPos[i][4] 推到了 eventButton 函数,即:

function eventButton(d){
    switch(d){
        case 0: // STARTBUTTON
            alert("Button");
            break;
        default:
            alert("NoButton");
    };
};

数组在 drawButton 函数中设置如下:

function drawButton(x,y,width,height,string,event){
    xCenterButton=x+(width/2);
    yCenterButton=y+(height/2);

    ctx.fillStyle="rgba(242,255,195,1)";
    ctx.fillRect(x,y,width,height);

    ctx.rect(x,y,width,height);
    ctx.fillStyle="rgba(0,0,0,1)";
    ctx.stroke();

    ctx.font="25px Arial";

    fontSize = getFontSize();
    centerNum = fontSize/4;

    ctx.fillStyle="rgba(0,0,0,1)";
    ctx.textAlign="center";
    ctx.fillText(string,xCenterButton,yCenterButton+centerNum);

    buttonPos.push([[x],[y],[x+width],[y+height],[event]]);
};

然后我在 menuStart 函数中调用该函数,如下所示:

function menuStart(){
    drawButton(getCenterX(100),getCenterY(50),100,50,"Start",0);
};

因此,mouseHandle 函数确实为 eventButton 函数提供了预期的 0 参数(我在默认情况下警告了 'd' 参数)。但是,好像 switch 语句无法识别 0,因为它使用默认大小写并警告“NoButton”。

知道为什么这不起作用吗?

注意 - JSFIDDLE 根据要求。:: http://jsfiddle.net/jWFwX/

4

1 回答 1

1

首先将 d 解析为和 int。工作JSFiddle

新代码:

function eventButton(d){
    var buttonInt = parseInt(d);
    switch(buttonInt){
    case 0: // STARTBUTTON
        alert("Button");
        break;
    default:
        alert("NoButton");
        alert(d);
    };
};
于 2013-09-27T13:44:50.547 回答