0
我有很好的datatables設置和選擇擴展 - 我有這個代碼當有人使用「報告」,它加載另一個頁面使用表中的一些單元格內容傳遞給那個報告。這工作正常,但是 - 我需要能夠通過該表,而不是行數據的每個<tr>
的data-element
...DataTables selected rows data-attribute
這是我當前的代碼:
var table = $('#table_search_project').DataTable();
//then re-run the code to get the selected rows
var id_list = $.map(table.rows('.selected').data(), function (item) {
return item[1]
});
所以你可以看到,我曾經使用item[1]
返回,但我真的想能夠獲得<tr>
對象,所以我可以檢索data-something-id
屬性(但我不想顯示它 - 因此問題)