如何在单个列搜索中搜索年龄范围。
这是我的代码。
$('#example tfoot th').each( function () {
var title = $(this).text();
$(this).html( `
<input id="minAge" type="number" placeholder="Min" />
<input id="maxAge" type="number" placeholder="Max" />
` );
});
$('body').on('change keyup', '#minAge, #maxAge', function(e) {
table.draw();
});
但是,我仍然无法获得确切的结果,而不是获得上一个年龄段的输入。
谢谢。