簡體   English   中英

數據表僅選擇過濾的內容

[英]Datatables select only filtered content

這個例子中

嘗試搜索“ airi ”-僅顯示一個結果。

嘗試提交表單,您可以輕松地看到下一行(實際上是enrire表)也已提交。

我該怎么辦,只有已過濾的行才能提交?

最好的祝福

您可以添加: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;
    } );
} );

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM