用某个类修改dataTable的每个td

时间:2016-01-11 11:34:06

标签: jquery datatable

$('#table').DataTable().cells('.currency').data().each(function(value, index) {         
        console.log(value);
    });

此代码使用类currency打印每个td的值。

该值是一个包含货币的字符串(例如2434)。我想将其格式化为正确的值 - > 2.434,00。 所以,我可以获得价值,格式化,但我不知道如何用新货币替换旧货币。

$(this).val()$(this).html()不起作用。

1 个答案:

答案 0 :(得分:0)

$('#table > tr > td').hasClass('.currency').each(function(value, index) {         
        console.log(value);
        $(this).text(formattedValue);
    });

你可能必须以这种方式循环。