我正在尝试获取单元格的值。我正在使用此代码:
var table = $('#table-list-users').DataTable();
$('#table-list-users tbody').on('click', 'td', function(){
someValue = table.cell( this ).data() ;
console.log(someValue);
})
我的某些单元格包含html,因此当我单击某个单元格时,我会收到8032456953而不是8032456953。我怎么能只得到文本?
答案 0 :(得分:0)
在DataTables中看不到任何特定的方法,因此只能使用:
currow = $(this).closest('tr');
someValueTwo = currow.find('td:eq(3)').text();