js小数和百分数的转换

一、百分数转化为小数

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;
}

 

posted @ 2017-12-06 18:26  my-WEB  阅读(45962)  评论(0编辑  收藏  举报