2013-04-24 60 views
0

遍歷我使用獲取的數據表中的所有過濾的行使用jQuery

tableName.fnFilter(this.value, 0); 
$(tableName.fnGetNodes()).addClass('diffColor'); 

應用CSS類過濾的行DataTable中,但我需要遍歷DataTable中。就是所有的過濾行它possible.How我可以做到這一點。 在此先感謝...

回答

0
May be its helpful for you 

var oTable = $("#Mytable").dataTable({whatever discribing your datatable}); 
//After the declaration of your datatable : 

var rowToAdd = true; 
oTable.$('tr').each(function(){ 
var td_index = 0; 
$(this).children('td').each(function){ 
if($(this).value == mynewdata[td_index]) 
    rowToAdd = false; 
td_index++; 
} 
}); 
if(rowToAdd) 
    oTable.fnAddData([Name,Age,Link,Schema,Visite,Info]); 
相關問題