我有一個表,每行包含多個複選框。我需要獲取每個複選框的值。我已經能夠做到像下面這樣來檢索表的第一列中的複選框的值...如何從使用jQuery的錶行中的特定單元格獲取複選框值?
$('#myTable tbody tr td:first-child input:checkbox').each(function() {
if (this.checked) {
//Do something
}
});
但現在我需要遍歷每一行,並獲得價值每個單獨的複選框。這是我一直在嘗試一個特定的複選框...
if($(this).find(':input[type="checkbox"]').eq(0).attr('checked')) {
myVariable = 'so and so';
}
else {
myVariable = 'something else';
}
這是行不通的。關於如何讓這項工作有任何建議?