我想遍歷表中的每一行中的每個單元格id =「myTable」,並獲得單元格的子div的id。迭代通過HTML表格行與jQuery得到div ID裏面單元
到目前爲止,我有這樣的:
$("td.theCell").each(function() {
var id = $(this).attr('id'); //this would give me the td id but I want its child div's id
});
我的HTML是這樣的:
<table id='myTable'>
<tr>foo</tr>
<tr>bar</tr>
<td>foo</td>
<td class='theCell'>
<div id='myDiv'>foo</div>
</td>
<tr>foo</tr>
<tr>bar</tr>
</table>
是否有人知道一個好辦法做到這一點?提前致謝。
'$(」 td.theCell div「)。each(function(){var id = $(this).attr('id'); //這會給我td id,但我想要它的子div的id});' – aserwin