如题,我在身份证号码字段添加编辑结束JS,用帆软内置公式获取出生日期,但是获取到的出生日期是错误的!JS下:var location = this.options.location; //获取当前控件的位置 var cr = FR.cellStr2ColumnRow(location);var col = cr.col; //列号 var ro = cr.row; //行号var t=contentPane.getCellValue(col-1,ro); if(t=="居民身份证"){ if(this.getValue().length==18){ var birth=FR.remoteEvaluate('=Format(Date(MID(D2,7,4),MID(D2,11,2),MID(D2,13,2)),"yyyy-MM-dd")'); //contentPane.setCellValue(col+1,ro,birth); alert(birth); }