在以下代码中,我使用studentName
和显示列feeAmount
。然后,最后,我尝试添加 的金额feeAmount
,但 jQuery 函数没有返回总金额。
<div id="studentContent" >
<script id="studentTemplate" type="text/x-jquery-tmpl">
<form id="studentForm" action ="">
<table class="" border="1" cellpadding="0" cellspacing="0">
<tbody>
{{#each items}}
<tr class="">
<td>{{=studentName}}</td>
<td><input type="text" class="{{=id}}" id="{{=id}}"
value='{{=feeAmount}}' /></td>
</tr>
{{/each}}
<tr>
<td><input id="totalFeeAmount" value="a" /></td>
</tr>
<tr>
</tbody>
</table>
</form>
</script>
</div>
$(document).ready(function () {
$("#studentForm").html(function () {
var totalFeeAmount = 0;
$(".feeAmount").each(function () {
totalFeeAmount += parseInt($(this).html())
});
return totalFeeAmount;
});
});
请让我知道如何修复函数以返回和显示列的总数。