入力の前と後ろにplusマイナスボタンを追加して動作させると、数量が更新されても更新されません。私がクリックして入力ボックスから戻ってこない限り、価格/合計。入力ボックスをクリックせずに数量を更新するにはどうすればよいですか?システムには、数量が変更されたときに価格を更新するコードが既にありますが、ボックス内をクリックした後にのみ、プラスまたはマイナスのボタンを使用したときに変更された値が読み取られません。jQueryインクリメントボタン更新値が更新されているが、値の変更は更新されていない
$('input#w3934_txtQantity').before("<input type='button' value='-' class='qtyminus' field='w3934_txtQantity' />");
$('input#w3934_txtQantity').after("<input type='button' value='+' class='qtyplus' field='w3934_txtQantity' />");
$('.qtyplus').click(function(e){
e.preventDefault();
fieldName = $(this).attr('field');
var currentVal = parseInt($('#w3934_txtQantity').val());
if (!isNaN(currentVal)) {
$('#w3934_txtQantity').val(currentVal + 10);
} else {
$('#w3934_txtQantity').val(0);
}
});
$(".qtyminus").click(function(e) {
e.preventDefault();
fieldName = $(this).attr('field');
var currentVal = parseInt($('#w3934_txtQantity').val());
if (!isNaN(currentVal) && currentVal > 0) {
$('#w3934_txtQantity').val(currentVal - 10);
} else {
$('#w3934_txtQantity').val(0);
}
\t \t
});
$('#w3934_txtQantity').trigger('change');
input {
width: 40px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><table cellspacing="0" border="0" style="width:100%;height:100%;padding-top:5px;">
<tr>
<td valign="bottom"><span id="w3934_lblQuantity" style="white-space:nowrap;">Quantity</span></td><td valign="bottom"><span id="w3934_lblUnitPrice" style="white-space:nowrap;">Unit Price</span></td>
<td><span id="w3934_lblAddlCharges" style="display:inline-block;width:110px;">Setup</span></td>
<td valign="bottom"><span id="w3934_lblShip">Shipping</span></td><td valign="bottom" style="text-align:right;"><span id="w3934_lblSubTotal" style="white-space:nowrap;">Subtotal</span></td></tr>
<tr>
<td class="SubTotalLine"><input name="w3934$txtQantity" type="text" value="170" id="w3934_txtQantity" class="medText formField" style="text-align:right;" /></td>
<td class="SubTotalLine"><input name="w3934$txtUnitPrice" type="text" value="$2.00" readonly="readonly" id="w3934_txtUnitPrice" class="medText formField DisplayTextBox" style="margin-top:5px;text-align:center;" /></td>
<td class="SubTotalLine"><input name="w3934$txtAddlCharges" type="text" value="$55.00" readonly="readonly" id="w3934_txtAddlCharges" class="medText formField DisplayTextBox" style="margin-top:5px;text-align:center;" /></td>
<td class="SubTotalLine"><input name="w3934$txtShip" type="text" readonly="readonly" id="w3934_txtShip" class="medText formField DisplayTextBox" style="margin-top:5px;text-align:center;" /></td>
<td class="SubTotalLine" align="right"><input name="w3934$txtSubTotal" type="text" value="$395.00" readonly="readonly" id="w3934_txtSubTotal" class="medText formField DisplayTextBox" style="margin-top:5px;" /></td>
</tr>
</table>
あなたは合計を更新任意のコードを追加しませんでした。 – trincot
これは、「変更」が行うことです。変更があるとき、つまりフォーカスが離れるときに発生します。 "ライブ"アップデートをしたい場合は、 'change'を' input'に置き換えてください。 – adeneo
@adeneo "ライブ"アップデートとはどういう意味ですか? –