我有一个数据表表设置为从服务器调用json。我希望能够根据每行中的数据轻松地格式化行:
https://datatables.net/examples/advanced_init/row_callback.html
所以我在我的代码中使用该链接中的代码,如下所示:
<script>
$(document).ready(function() {
testTable = $('#myList').DataTable({
// My current proprerties and ajax stuff
"createdRow": function ( row, data, index ) {
if (My own conditional) {
$('td', row).eq(5).addClass('highlight');
}
}
})
然而,当我运行这个时,我得到错误:
Uncaught TypeError: Cannot read property 'replace' of undefined
我是jQuery的新手,尤其是数据表,所以我不确定从哪里开始。有没有人遇到过它?