搜索
您的当前位置:首页正文

js将小数转换成百分数

来源:二三娱乐
toPercent(point){
       var str=Number(point*100).toFixed(1);
       str+="%";
       return str;
}
Top