标签: javascript jquery-isotope
我有一个表,按同位素JS排序和过滤。我想按日期添加过滤器,以显示由datepicker选择的两个日期之间的结果 知道怎么做吗?
谢谢
答案 0 :(得分:0)
使用自定义过滤功能 -
$grid.isotope({ filter: function() { var date= $(this).find('.date').text(); return (date comparison here); } })