0
我有一个没有id或名称的div内的表。我如何读取jQuery中所需表格单元格的值?例如:从jQuery表中获取单元格值
<div id="myDiv" style="padding-top: 0px; height: 60px;">
<table width="264" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td width="80" height="20" style="font-size: 10px;">
</td>
<td id="the_cell_i_want" align="right" style="color: rgb(102, 188, 41); font-size: 24px;font-weight: bold; background-color: rgb(255, 255, 255); background-image: none;">THE_VALUE_I_WANT</td>
</tr>
<tr>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
我想要检索id为“the_cell_i_want”的单元格,它应该返回“THE_VALUE_I_WANT”。