0
我有一個腳本,我將它傳遞給一個字符串,並且它將返回格式爲美元的字符串。所以,如果我發送它「10000」它將返回「$ 10,000.00」現在的問題是,當我發送它「1000000」(100萬美元)它返回「$ 1,000.00」,因爲它只設置爲基於一組零。這是我的腳本,我如何調整它以計算兩套零(100萬美元)?Javascript函數格式化爲貨幣
String.prototype.formatMoney = function(places, symbol, thousand, decimal) {
if((this).match(/^\$/) && (this).indexOf(',') != -1 && (this).indexOf('.') != -1) {
return this;
}
places = !isNaN(places = Math.abs(places)) ? places : 2;
symbol = symbol !== undefined ? symbol : "$";
thousand = thousand || ",";
decimal = decimal || ".";
var number = Number(((this).replace('$','')).replace(',','')),
negative = number < 0 ? "-" : "",
i = parseInt(number = Math.abs(+number || 0).toFixed(places), 10) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return negative + symbol + (j ? i.substr(0, j) + thousand : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousand) + (places ? decimal + Math.abs(number - i).toFixed(places).slice(2) : ""); };
在此先感謝您提供任何有用信息!
使用循環。無論何時您需要重複代碼,請使用循環。 – Carcigenicate
總的來說:這是一個很常見的事情,可能存在您應該使用的API或庫,而不是重新創建這個特定的輪子。 – deceze