1、百分數轉化爲小數spa
function toPoint(percent){ var str=percent.replace("%",""); str= str/100; return str; }
2、小數轉化爲百分數code
function toPercent(point){ var str=Number(point*100).toFixed(1); str+="%"; return str; }