JS 小數轉換成百分比

var A=0.3587;
document.getElementById("eastRate").innerHTML = A.toPercent();

 

Number.prototype.toPercent = function() {
    return (Math.round(this * 10000) / 100).toFixed(0) + '%';  //36%
}

 

Number.prototype.toPercent = function() {
    return (Math.round(this * 10000) / 100).toFixed(1) + '%';  //35.9%
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章