使用Isotop过滤日期

时间:2016-08-01 10:15:07

标签: javascript jquery-isotope

我有一个表,按同位素JS排序和过滤。我想按日期添加过滤器,以显示由datepicker选择的两个日期之间的结果 知道怎么做吗?

谢谢

1 个答案:

答案 0 :(得分:0)

使用自定义过滤功能 -

$grid.isotope({ filter: function() {
  var date= $(this).find('.date').text();
  return (date comparison here);
} })