さまざまな列と多くの行を持つテーブルがあります。これを簡単にするために、課金対象の行数 (この場合は列 2) を知る必要があります。つまり、列 2 の何行に "y" というテキストがありますか? とにかく、これは私がこれまでに試したことです:
jQuery
var billable = 0;
// attempt 1
table.rows().eq(1)( function () {
if(table.data() === 'y'){
//priceTotal+=parseInt(table.cell(row,0).data());
alert('This is the billable column, now count which equal "y".')
billable++;
}
});
// attempt 2
column(2).data() === "y"){
alert('This is the billable column, now count which equal "y".')
billable++;
}