我有一个包含各种列和许多行的表。为了简化这一点,我只需要知道有多少行是可计费的(在本例中为第 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++;
}