2
我有兩個問題。表格ID在DOM中不可用。如何在以下情況下使用Div id來獲得'10'的第3行第2列值?如何使用Div Id選擇器獲取表列值
我在以下代碼迭代通過第二列時出現錯誤。我如何獲得第三排第二列?
jQuery代碼
<script>
$("'#part_li3_tt table'").children("tbody").children("tr").children("td:nth-child(2)").each(function() {
alert("third row second col Value: " + $(this).html());
});
</script>
HTML代碼
<div id="part_li3_tt">
<table>
<tbody>
<tr>
<td>FName:</td>
<td>Sara</td>
</tr>
<tr>
<td>LName:</td>
<td>Rodriguez</td>
</tr>
<tr>
<td>Class:</td>
<td>10</td>
</tr>
</tbody>
</table>
</div>
謝謝! @Xetnus – Kaur