或者
success: function(o){
//加载核查日期
if(o.sdhctz.hcrq!=null){
var date = (o.sdhctz.hcrq).toString().split("-");
year1.setValue(date[0]);
//判断月份和天数中是否带0,从而更改显示情况。
var mm=date[1].substring(0,1);
var mmm=date[1].substring(1,2);
if(mm==0){
month1.setValue(mmm);
}else{
month1.setValue(date[1]);
}
var dd=date[2].substring(0,1);
var ddd=date[2].substring(1,2);
if(dd==0){
day1.setValue(ddd);
}else{
day1.setValue(date[2]);
}
}