var a = this.getValue();// 获取当前单元格控件的值var status = contentPane.getWidgetsByName("status");// 获取控件status控件所在单元格if(status.length>0){ $.each(status,function(i,item){ var cell = item.options.location;// 循环判断 if(a.length==0){//重置内容 item.reset(); }// 单元格赋值 contentPane.setCellValue(cell,null,a); }) }else{// 单元格赋值 contentPane.setCellValue("B2",null,a); if(a.length==0){// 判断-单元格赋值 contentPane.getWidgetByName("status").reset(); } }