我有下表
<table class="authors-list" border=0 id="ordertable">
<tr>
<td>Cubic Meters</td><td>Cubes per Bundle</td><td>Total Bundles</td>
<tr>
<td><input type="text" name="cubicmeters1" id="cubicmeters1" value="1.38"></td>
<td><input type="text" name="cubesperbundle1" id="cubesperbundle1" value="1.485"></td>
<td><input type="text" name="bundles1" id="bundles1"></td>
</tr>
<tr>
<td><input type="text" name="cubicmeters2" id="cubicmeters2" value="1.38"></td>
<td><input type="text" name="cubesperbundle2" id="cubesperbundle2" value="1.485"></td>
<td><input type="text" name="bundles2" id="bundles2"></td>
</tr>
<tr>
<td><input type="text" name="cubicmeters3" id="cubicmeters3" value="1.38"></td>
<td><input type="text" name="cubesperbundle3" id="cubesperbundle3" value="1.485"></td>
<td><input type="text" name="bundles3" id="bundles3"></td>
</tr>
</table>
我想要做的是遍历每个表行并对两个输入执行数学函数,并将结果填充到第三个输入中。
小提琴在这里:http: //jsfiddle.net/ttZtX/1/
所以这是我对 jquery 的尝试:
$("table.authors-list").find('input[name^="cubicmeters1"]').each(function () {
cubes += +$(this).closest('tr').find('input[name^="cubicmeters"]').val();
cubesperbundle += +$(this).closest('tr').find('input[name^="cubesperbundle"]').val();
+$(this).closest('tr').find('input[name^="bundles"]').val((cubes*cubesperbundle).toFixed(2));
});
这根本不会产生任何结果或错误,并且不会填充输入。
总而言之,我的要求是让 jquery 遍历每一行,乘以cubicmeters
并cubesperbundle
填充bundles
结果。
很简单,但我就是做不好。
任何帮助,将不胜感激。
提前致谢...