var location = this.options.location;//获取当前控件的位置 var cr = FR.cellStr2ColumnRow(location); var col = cr.col; //当前列号 var ro = cr.row; //当前行号 var V1 = _g().getCellValue(0, col + 21, ro);//获取当前行Z15的值(累计占比值) var V2 = this.getValue(); //获取当前单元格值 i = 14; sum = 0; while(i<ro){ var V3 = _g().getCellValue(0,col,i); sum = sum + V3; i++; }; alert(sum); ——------------------------------上面是我的JS,我想循环获取控件中的值进行相加(累计控件的值),控件是数字控件,但是返回的结果为什么不是0.75,而是拼接的值0--------------------------------------------- |