我是 jQuery 的新手,这可能是一个简单的答案,但如果选中了复选框,我会尝试计算价格和数量。我遍历项目列表,用户选择复选框并输入数量,我希望它在最后一个单元格中总计。
<table>
<tr>
<td width="10%"> </td>
<td width="80%">Item</td>
<td width="10%">Price</td>
<td width="10%">Quantity</td>
<td width="10%">Total</td>
</tr>
<tr>
<td > <input type="checkbox" name="Extras" value="id" checked="no"></td>
<td >ItemName</td>
<td><cfinput type="text" name="quantity" class="quantity" size="4"></td>
<td>#Extras.Price #</td>
<td><span id="total"></span></td>
</tr>
</table>
到目前为止,我的 jQuery 有以下内容:
$(document).ready(function() {
$("input[type=checkbox]:checked").each (function (){
// not sure what to put here
});
});
谢谢您的帮助!