我有一个包含数据行的表:
<tbody>
<tr class="rows">
<td><input type="text" name="total" value="3500.00" id="total" class="price"></td>
<td>$<input type="text" value="23.00" name="customerS" id="customerS" class=""></td>
</tr>
<tr class="rows">
<td><input type="text" name="total" value="3900.00" id="total" class="price"></td>
<td>$<input type="text" value="3446.00" name="customerS" id="customerS" class=""></td>
</tr>
</tbody>
我想使用行的 ID 调用函数。
format('total', 'customerS');
我不知道如何调用函数格式,.each
以便为每个 tr(rows) 调用该格式。请让我知道,谢谢。