此代码将生成10行textbox1,textbox2和textbox3。如果我在loop1中的第一行文本框中输入值。例如1和3它将相乘,结果为3。但是它会在所有循环中显示结果。我怎样才能在loop1中创建它。?
示例
QTY PRICE AMOUNT
line1 1 2 3
line2 3
line3 3
line4 3
line5 3
line6 3
line7 3
line8 3
line9 3
line10 3
PHP HTML CODE
<?php for($x=1; $x<=10; $x++){?>
<tr>
<td><input type="text" name="qty<?=$x;?>" class="qty form-control" size="6"/></td>
<td><input type="text" name="price<?=$x;?>" class="price form-control" /></td>
<td><input type="text" name="amount<?=$x;?>" class="amount form-control"></td>
</tr>
<?php } ?>
JS CODE
<script>
$(".price,.qty").keyup(function () {
$('.amount').val($('.qty').val() * $('.price').val());
});
</script>
答案 0 :(得分:2)
如果您为每个事件单独编写,这将非常容易,请尝试使用
<script>
$(document).ready(function(){
$(".qty").keyup(function () {
$(this).closest('tr').find('.amount').val($(this).val() * $(this).closest('tr').find('.price').val());
});
$(".price").keyup(function () {
$(this).closest('tr').find('.amount').val($(this).closest('tr').find('.qty').val() * $(this).val());
});
});
</script>
答案 1 :(得分:0)
<script>
$(".price,.qty").keyup(function () {
var curName = $(this).attr('name');
var reqName = '';
if (curName.indexOf("qty") != -1) {
reqName = curName.substr(3);
} else {
reqName = curName.substr(5);
}
$("input[name='amount"+reqName+"']").val($("input[name='qty"+reqName+"']").val() * $("input[name='price"+reqName+"']").val());
});
</script>
答案 2 :(得分:0)
我解决了..我只是改变它而不是使用Class I使用ID然后将变量x放在id中并且还将变量x放在我的JS上
<?php for($x=1; $x<=10; $x++){?>
<tr>
<td><input type="text" name="qty<?=$x;?>" id="qty<?=$x;?>" class="form-control" size="6"/></td>
<td><input type="text" name="price<?=$x;?>" id="price<?=$x;?>" class="orm-control" /></td>
<td><input type="text" name="amount<?=$x;?>" id="amount<?=$x;?>" class="form-control"></td>
</tr>
<?php } ?>
$("#price<?=$x;?>,#qty<?=$x;?>").keyup(function () {
$('#amount<?=$x;?>').val($('#qty<?=$x;?>').val() * $('#price<?=$x;?>').val());
});