标签:return += ber 分数 style turn cti fixed ace
一、百分数转化为小数
function toPoint(percent){ var str=percent.replace("%",""); str= str/100; return str; }
二、百分数转化为小数
function toPercent(point){ var str=Number(point*100).toFixed(1); str+="%"; return str; }
标签:return += ber 分数 style turn cti fixed ace
原文地址:http://www.cnblogs.com/web520/p/7994203.html