//不进行四舍五入,保留两位小数      function getKeepTwoDecimals(val) {          var newVal = (parseInt(val * 100) / 100).toFixed(2);          return newVal;      }