我有一张像这样的桌子:
<table border="0">
<tr>
<td>10: <input type="text" size="1" autocomplete="off" name="10"/> </td>
<td>12: <input type="text" size="1" autocomplete="off" name="12"/> </td>
<td>14: <input type="text" size="1" autocomplete="off" name="14"/> </td>
<td>16: <input type="text" size="1" autocomplete="off" name="16"/> </td>
<td>18: <input type="text" size="1" autocomplete="off" name="18"/> </td>
<td>20: <input type="text" size="1" autocomplete="off" name="20"/> </td>
<td>22: <input type="text" size="1" autocomplete="off" name="22"/> </td>
</tr>
</table>
我需要将输入框中输入的值乘以65并实时生成美元小计。我环顾四周,我不太熟悉javascript或jquery,所以我想知道这样的解决方案是否已经存在,或者是否有人可以指出我正确的方向创建一个。
答案 0 :(得分:1)
答案 1 :(得分:1)
您需要在每个输入上处理change()事件:
$('input').change(function () {
var that = $(this);
that.siblings('div').text(parseInt(that.val(), 10) * 65);
});
答案 2 :(得分:0)
将其添加到HTML的底部:Subtotal: <span id="subtotal"></span>
确保加载jQuery,然后将此JavaScript放在HTML下面:
<script type="text/javascript">
function compute_subtotal() {
var total = 0;
$("input[type=text]").each( function(i,e) {
var value = $(e).val();
if( parseInt(value) > 0 ) total += (65 * parseInt(value));
});
$("#subtotal").html( total );
}
jQuery(document).ready( function() {
$("input[type=text]").change( function() { compute_subtotal(); } );
$("input[type=text]").keyup( function() { compute_subtotal(); } );
});
</script>