我正在尝试将 2 个值与 jQuery 一起添加。我有一个包含这些值的表:
<table>
<tr id="fc_cart_foot_subtotal">
<td class="fc_col2">$7.95</td>
</tr>
<tr id="fc_cart_foot_shipping">
<td class="fc_col2">$4.00</td>
</tr>
<tr id="fc_cart_foot_total">
<td class="fc_col2">$7.95</td>
</tr>
</table>
我需要添加#fc_cart_foot_subtotal .fc_col2 的值:
<tr id="fc_cart_foot_subtotal">
<td class="fc_col2">$7.95</td>
</tr>
到 #fc_cart_foot_shipping .fc_col2 的值:
<tr id="fc_cart_foot_shipping">
<td class="fc_col2">$4.00</td>
</tr>
并更新 #fc_cart_foot_total .fc_col2 的值
<tr id="fc_cart_foot_total">
<td class="fc_col2">$7.95</td>
</tr>
因此,在本例中,第一个小计 7.95 美元应加上 4.00 美元,总计 11.95 美元。小计和运输成本会发生变化,因此我需要能够在这些值发生变化时“获取”它们并在等式中使用它们。