私はこのコードを以下のように機能させようとしています。あなたの助けを本当に感謝します。基本的には、3つの入力フィールドの合計を計算してから、他の2つのフィールドと乗算します。最終結果は、入力フィールドpcamountに表示されます。
jsFiddleの例は次のとおりです。http://jsfiddle.net/D98PW/
以下はjqueryスクリプトとhtmlです
よろしくお願いします!
$(document).ready(function() {
$('input[name=deposit], input[name=minpremium], input[name=adjpremium],input[name=procombaserate], input[name=profcomper], input[name=pcamount]').change(function(e) {
var total_mnozi = 0;
var total=0;
var $row = $(this).parent();
var dep = $row.find('input[name=deposit]').val();
var minpre = $row.find('input[name=minpremium]').val();
var adjpre = $row.find('input[name=adjpremium]').val();
var procombase = $row.find('input[name=procombaserate]').val();
var profcomper = $row.find('input[name=profcomper]').val();
// var pcamount= $row.find('input[name=pcamount]').val();
// total_mnozi= procombase * profcomper;
$('dep, minpre, adjpre').each(function() {
total += parseFloat($(this));
total_mnozi = total * procombase * profcomper;
$row.find('input[name=pcamount]').val( total_mnozi);
});
});
});
そしてhtml
<table >
<tr>
<td><label>MIN Premium</label></td>
<td class="toadd"><input type="text" class="input1" name="minpremium" id="minpremium" value=""></td>
</tr>
<tr>
<td><label>Deposit</label></td>
<td ><input type="text" name="deposit" id="deposit" class="input1" size="20" value=""></td>
<td></td><td></td>
</tr>
<tr>
<td><label>Adjustment Premium</label></td>
<td ><input type="text" name="adjpremium" id="adjpremium" class="input1" size="20" value=""></td>
<td><label>Return Premium</label></td>
<td><input type="text" class="input1" name="returnpremium" id="returnpremium"></td>
</tr>
<tr>
<td><label>Tax Allocation</label></td>
<td><input type="text" class="input1" name="taxalloc" id="taxalloc"></td>
<td><label>Premium Base Rate</label></td>
<td><input type="text" class="input1" name="pramiumbase" id="pramiumbase"></td>
</tr>
<tr>
<td><label>Adjustable Rate</label></td>
<td><input type="text" class="input1" name="adjrate" id="adjrate" class="input1" size="20" value=""></td>
<td><label>PC Base Rate</label></td>
<td><input type="text" class="input1" name="procombaserate" id="procombaserate" class="input1" size="20" value=""></td> </tr>
<tr>
<td><label>Profit Commission %</label></td>
<td><input type="text" class="input1" name="profcomper" id="profcomper" value=""></td>
<td><label>PC Amount</label></td>
<td><input type="text" class="input1" name="pcamount" id="pcamount" class="input1" size="20" >
</td>
</table>