我有一个像这样行的表:
<tr>
<th width="30"></th>
<th width="30">Time</th>
<th>Description</th>
</tr>
<tr>
<td><a href="#" class="edit">edit</a></td>
<td class="time">2.50</td>
<td>I did this, and also that, then a little of something else.</td>
</tr>
<tr>
<td><a href="#" class="edit">edit</a></td>
<td class="time">1.50</td>
<td>Another description of time.</td>
</tr>
<tr>
<td><a href="#" class="edit">edit</a></td>
<td class="time">1.50</td>
<td>Yet one more item entered.</td>
</tr>
<tr class="total">
<td><strong>Total:</strong></td>
<td><strong>[calculate total here]</strong></td>
<td> </td>
</tr>
我正在使用 jQuery,作为添加时间时发生的函数的一部分,我需要添加 td.time 单元格中的所有数字。但是对于我的生活,我不太擅长编写循环并且无法弄清楚。
我只需要遍历所有 td.time 单元格并将数字相加的代码。获得总数后,我可以将其插入[calculate total here]位置。
谢谢!