こんにちは Sanela 私はあなたを助けるためにデモを作成しました。それはjQueryを使用しています
デモ
http://jsfiddle.net/L9PJa/
HTML
<table>
<tr>
<td>
<input name="price_1" id="price_1" class="price" value="5" type="text">
<input name="pieces_1" id="pieces_1" type="text" value="1">
<input name="subtot_1" id="subtot_1" type="text">
</td>
</tr>
<tr>
<td>
<input name="price_2" id="price_2" class="price" value="7" type="text">
<input name="pieces_2" id="pieces_2" type="text" value="1">
<input name="subtot_2" id="subtot_2" type="text">
</td>
</tr>
<tr>
<td>
<input name="price_3" id="price_3" class="price" value="9" type="text">
<input name="pieces_3" id="pieces_3" type="text" value="1">
<input name="subtot_3" id="subtot_3" type="text">
</td>
</tr>
<tr>
<td id="total_price"></td>
</tr>
<tr>
<td><input type="button" id="button" value="calculate"></td>
</tr>
JavaScript
$("#button").click(function() {
$('#total_price').text('0');
$(".price").each(function() {
$(this).next().next().val(parseInt($(this).val())*parseInt($(this).next().val()));
$('#total_price').text(parseInt($('#total_price').text())+parseInt($(this).next().next().val()));
});
});
動的に作成された要素のクリック時
$("body").on("click", "#button", function() {
$('#total_price').text('0');
$(".price").each(function() {
$(this).next().next().val(parseInt($(this).val())*parseInt($(this).next().val()));
$('#total_price').text(parseInt($('#total_price').text())+parseInt($(this).next().next().val()));
});
});
入力が隣り合っていない
$("body").on("click", "#button", function() {
$('#total_price').text('0');
$(".price").each(function() {
$(this).next('input').next('input').val(parseInt($(this).val())*parseInt($(this).next('input').val()));
$('#total_price').text(parseInt($('#total_price').text())+parseInt($(this).next('input').next('input').val()));
});
});