我正在使用此方法生成选择: https://datatables.net/examples/api/multi_filter_select.html
__getitem__
HTML是:
var oTable = $('#streamingTable').DataTable({
"info": false,
"dom": '<"top">rt<"bottom"p><"clear">',
"autoWidth": false,
"iDisplayLength": 7,
initComplete: function () {
this.api().columns().every( function () {
var column = this;
var select = $('<select><option value=""></option></select>')
.appendTo( $(column.footer()).empty() )
.on( 'change', function () {
var val = $.fn.dataTable.util.escapeRegex(
$(this).val()
);
column
.search( val ? '^'+val+'$' : '', true, false )
.draw();
} );
column.data().unique().sort().each( function ( d, j ) {
select.append( '<option value="'+d+'">'+d+'</option>' )
} );
} );
}
});
现在,问题在于生成的选择 - 附加到
<table id="streamingTable" class="table" cellspacing="0" width="100%">
<thead>
<tr>
<th class="genre">Genre<span></span></th>
<th>Title<span></span></th>
<th>Author<span></span></th>
<th>Id<span></span></th>
</tr>
</thead>
<tbody>
<tr>
<td data-attr="action" class="image"><img src="images/dummy/1.png" alt="book"></td>
<td data-attr="1" class="title">test</td>
<td data-attr="author" class="author">Author: <a href=""> John Dotrice</a></td>
<td data-attr="id1">1</td>
</tr>
</tbody>
<tfoot>
</tfoot>
将呈现TD的值,所以如果第一个td有图像,select会有图像标记,我要问的是:可以使用td的data-attr作为搜索标记,也可以选择colud这个data-attr选项,而不是td的内容?
感谢。