/**处理金额的千分位转为数字**/ functio StrToNumber(obj){ var reg = /^[0-9]+.?[0-9]*$/; //验证字符串是否是数字 if (!(reg.test(obj))) { //为字符串 则判断是否存在',' if((obj+"").replace(/^ss*/, '').replace(/ss*$/, '')==""){ return 0.00 ; } if(obj== undefined){ return 0.00; } if((obj || 0).toString().replace(/(d)(?=(?:d{3})+$)/g, '$1,')){ obj=obj.replace(/,/gi,''); return obj; } } return obj; }