所以我有一个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函数DOES为eventButton函数提供了一个0的参数(我在默认情况下警告了'd'参数)。然而,就好像switch语句不识别0,因为它使用默认情况并警告'NoButton'。
知道为什么这不起作用吗?
注 - 请求JSFIDDLE。 :: http://jsfiddle.net/jWFwX/
答案 0 :(得分:1)
首先将d解析为int。工作JSFiddle
新代码:
function eventButton(d){
var buttonInt = parseInt(d);
switch(buttonInt){
case 0: // STARTBUTTON
alert("Button");
break;
default:
alert("NoButton");
alert(d);
};
};