数据表仅选择过滤的内容

时间:2014-09-05 07:37:47

标签: javascript jquery datatables

this示例中

尝试搜索" airi" - 只会显示一个结果。

尝试提交表单,您可以轻松查看下一行(实际上是enrire表)也可以提交。

我怎么能这样做只是提交的过滤行?

祝你好运

1 个答案:

答案 0 :(得分:1)

您可以添加:visible选择器:

$(document).ready(function() {
    var table = $('#example').DataTable();

    $('button').click( function() {
        var data = table.$('input:visible, select:visible').serialize();
        alert(
            "The following data would have been submitted to the server: \n\n"+
            data.substr( 0, 120 )+'...'
        );
        return false;
    } );
} );