【轉】js小數轉百分比 js小數和百分數的轉換

轉自:js小數和百分數的轉換html

function toPercent(point){
    var str=Number(point*100).toFixed(1);
    str+="%";
    return str;
}
相關文章
相關標籤/搜索