creator lable改变字体颜色没起作用

代码如下:改变颜色没起作用

    lbIndex:{
        default:null,
        type:cc.Label,
    },

setShowIndex:function(strInfo) {
if(this.mChessType == EnChessType.Black) {
this.lbIndex.color = new cc.color(255,255,255,255);
} else {
this.lbIndex.color = new cc.color(0,0,0,255);
}
this.lbIndex.string = strInfo;

    this.lbIndex.node.active = true;
},

没人遇到么?

color是node的属性 不是Label的