功能不正常

时间:2015-02-14 05:05:46

标签: actionscript-3 function flash-cs6

我对我的功能有疑问 这是我的功能:

function checkKind()
{
    var i:Number = new Number;
    for (i=0 ; i<9 ; i++)
    {
        if (pValue[i] >= 1 && pValue[i] <= 13)
        {
            pKind[i] = 1;
        }
        else if (pValue[i] >= 14 && pValue[i] <= 26)
        {
            pKind[i] = 2;
        }
        else if (pValue[i] >= 27 && pValue[i] <= 39)
        {
            pKind[i] = 3;
        }
        else if (pValue[i] >= 40 && pValue[i] <= 52)
        {
            pKind[i] = 4;
        }
    }
}  

pKind[i]总是填满数字1,所以pKind[i] = 1 我已经检查了pValue[i]已正确填写的内容 有人可以帮我看看我的代码中有什么问题吗?

0 个答案:

没有答案