js将小数转换成百分数

作者: 月中眠_d56d | 来源:发表于2019-08-20 18:03 被阅读0次
    toPercent(point){
           var str=Number(point*100).toFixed(1);
           str+="%";
           return str;
    }
    

    相关文章

      网友评论

        本文标题:js将小数转换成百分数

        本文链接:https://www.haomeiwen.com/subject/occmsctx.html