js 格式转化

一、百分数转化为小数

function toPoint(percent){
    var str=percent.replace("%","");
    str= str/100;
    return str;
}

二、小数转化为百分数

function toPercent(point){
    var str=Number(point*100).toFixed(1);
//toFixed为保留的小数位
str+="%"; return str; }

原文地址:https://www.cnblogs.com/jscai/p/12936962.html