$('#table').DataTable().cells('.currency').data().each(function(value, index) {
console.log(value);
});
此代码使用类currency
打印每个td的值。
该值是一个包含货币的字符串(例如2434)。我想将其格式化为正确的值 - > 2.434,00。 所以,我可以获得价值,格式化,但我不知道如何用新货币替换旧货币。
$(this).val()
或$(this).html()
不起作用。
答案 0 :(得分:0)
$('#table > tr > td').hasClass('.currency').each(function(value, index) {
console.log(value);
$(this).text(formattedValue);
});
你可能必须以这种方式循环。