我有一个使用footable jquery插件实现分页和排序的表。现在我希望使用select输入过滤特定列。
以下是代码的一部分:
table class="footable table table-stripped" data-page-size="10" data-filter="#filter" id="example"
thead
tr
th Problem Name
th Hospital
th Status / here i want to filter with select input
th Availablity Slot Start Time
th Availablity Slot End Time
tbody
- @bookings.each do |book|
tr class="gradeX"
td=book.problem.name
td=book.hospital
/----some code-----
javascript:
$(function(){
$('.footable').footable();
});
我不知道如何实现它。 如何使用jquery过滤它们?帮我。