我有一个包含产品、价格和数量的动态表。我想在数量改变时改变价格。这是我的 XHTML 表
<table>
<caption>Checkout Time!</caption>
<thead>
<tr>
<th>Item</th>
<th>Price</th>
<th>Quantity</th>
<th>Total</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4" align="right">
<input type="button" value="Checkout!" />
</td>
</tr>
</tfoot>
<tbody>
<tr>
<td class="description">Folger's Gourmet Instant Coffee 24 count box.</td>
<td>
<input type="text" id="price" readonly value="12.50" class="readonly" />
</td>
<td>
<input type="text" id="quantity" value="1" />
</td>
<td>
<input type="text" id="total" readonly value="12.50" class="readonly" />
</td>
</tr>
</tbody>
</table>
我只想使用 JQuery。有人可以帮忙吗?