如何在数据表中创建单个列搜索(年龄范围)?

时间:2020-06-04 06:44:34

标签: datatables

如何在单个列搜索中搜索年龄范围。

这是我的代码。

$('#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();
 });

但是,我仍然无法获得确切的结果,而不是获得上一个年龄段的输入。

谢谢。

0 个答案:

没有答案