在下拉列表(名称)中进行选择后,我想计算表中的行数。但是这里唯一的问题是我想根据我的表(位置)中的其他属性来计算行数。
例如:
如果我在名称:Tiger Nixon 中进行选择
我想得到
总行数:3
位置1:1行 位置2:1行 位置3:1行
这是我用来选择属性(名称)的下拉列表的代码,它可以正常工作。
$(document).ready(function () {
$('#example').DataTable({
initComplete: function () {
this.api().columns(0).every(function () {
var column = this;
var select = $('<select class="Search"><option value=""></option></select>')
.appendTo($(column.header()))
.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>')
});
});
}
});
$('.Search').change(function () {
if ($("#example > tbody > tr > td").length == 1) {
$('#Count').empty();
$('#Count').append('Count: 0' );;
} else {
$('#Count').empty();
$('#Count').append('Count: ' + $("#example > tbody > tr").length);
}
});
});
this pict for counting number of rows using just selection on Name