可以参考一下:
var start_month = _g().parameterEl.getWidgetByName('month').getValue(); //
if(Number(start_month.substr(5,2))%2==1)
{
if(typeof arr1 == 'undefined')
{
arr1 = [] ;
}
arr1[0] = this.getValue() ;
alert(arr1) ;
}
if(Number(start_month.substr(5,2))%2==0)
{
FR.Msg.toast("选择的日期不能为偶数!") ;
var start_month = arr1[0] ;
_g().parameterEl.getWidgetByName('month').setValue(start_month); //当选择的日期为偶数时,重置为之前的日期
}