列の値でhtmlテーブルをフィルタリングしようとしています(垂直方向にはMS Excelフィルターのように)。次のコードでうまくいくと思いました。それは失敗しています、誰かが私がそれが失敗している理由を理解するのを手伝ってもらえますか?
エラー:
$( "tr")。each.findは関数ではありません[このエラーで中断]
$('tr')。each.find('td')。eq(coli)(function(){
テーブルのヘッダー行にはdiffクラスが適用されており、重要な場合は本体にdiffクラスが適用されています...
rowi = this.rowIndex;
var coli = e.target.cellIndex;
cellval = $('tr').eq(rowi).find('td').eq(coli).text();
$("#filterbutton").click(function() {
var row = new Array();
$('tr').each.find('td').eq(coli)(function() {
if ($(this).text() == cellval) { // you can add aditional filter criteria... || $(this).text() == 50) {
row.push($(this).index());
}
});
$('th,td').each(function() {
if (($.inArray($(this).index(), row)==-1) && ($(this).index() != '0')){$(this).hide();}
});
});