我正在尝试使用NumeralJS格式化一些来自数据库的数字。
主要功能文件中的代码:
$(document).ready(function(){
numeral.register('locale', 'pt-br', {
delimiters: {
thousands: '',
decimal: ','
},
abbreviations: {
thousand: 'k',
million: 'm',
billion: 'b',
trillion: 't'
},
ordinal : function (number){
return number === 1 ? 'er' : 'ème';
},
currency: {
symbol: 'R$'
}
});
if ($('[type="date"]').prop('type') != 'date'){
$('[type="date"]').datepicker();
}
});
页面代码
numeral.locale('pt-br');
...
var percDiferenca = numeral(retorno.dados[i].percentedif).format('0,00');
var percValor = numeral(retorno.dados[i].percenteval).format('0.00');
它正在输出11.166和213986,00。 我想要的结果是11,66和2139,86。 预先谢谢你。