-1

我想制作一个小表格来对下表执行选择过滤器:

<table id="example">
    <thead>
        <tr>
            <th>Name</th>
            <th>Surname</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Michael</td>
            <td>Jordan</td>
        </tr>
        <tr>
            <td>Michael</td>
            <td>Jackson</td>
        </tr>
        <tr>
            <td>Bruno</td>
            <td>Mars</td>
        </tr>
    </tfoot>
</table>

我该怎么做?

它应该类似于这个例子http://www.datatables.net/release-datatables/examples/api/multi_filter_select.html但是这两个字段都不应该在表格的底部,而是在页面的另一部分.

4

2 回答 2

3

这是一种解决方案。它会自动生成select元素。

$("#example > thead th").each(function(i) {
    $("<select />").attr("data-index", i).html($("<option />")).change(function() {
        $("#example > tbody > tr").show().filter(function() {
            var comb = [], children = $(this).children();
            children.each(function(i) {
                var value = $("select[data-index='" + i + "']").val();
                if (value == $(this).text() || value == "") comb.push(1);
            });
            return comb.length != children.length;
        }).hide();
    }).appendTo("body");
});
$("#example > tbody tr").each(function() {
    $(this).children().each(function(i) {
        var that = $(this);
        var select = $("select[data-index='" + i + "']");
        if (!select.children().filter(function() {
            return $(this).text() == that.text();
        }).length) {
            select.append($("<option />").text($(this).text()));
        }
    });
});​

演示:http: //jsfiddle.net/xXj5F/

于 2012-05-14T20:31:49.497 回答
1

我认为你需要这样的东西:

var alreadyOrdered = false;
$('#example tr th').on('click', function() {
    var index = $(this).index(),
        rows = [];
    $('#example tbody tr').each(function() {
        rows.push(this)
    });
    if (alreadyOrdered == false) {
        rows.sort(function(a, b) {
            return $('td:eq(' + index + ')', a).text() > $('td:eq(' + index + ')', b).text();
        });
        alreadyOrdered = true;;
    } else {
        rows.sort(function(a, b) {
            return $('td:eq(' + index + ')', a).text() < $('td:eq(' + index + ')', b).text();
        });
        alreadyOrdered = false;
    }
    $('#example tbody').empty().append(rows);
});​

演示

于 2012-05-14T20:23:49.813 回答