用 ID 名称中的后续数字重写 JavaScript 代码

Rewriting JavaScript code with consequent numbers in the names of ids

我正在尝试将函数应用于 ID 包含后续数字(即 price1、price2、price3)等的输入字段

为开始定义的第一行字段没有问题。但是进一步的输入字段是由 jQuery 函数动态添加的,并且它们的数量是事先不知道的。

我希望这是一个易于应用的循环:

var i=1;
$("#quantity"+i).keyup(function() {
    var price= $("#price"+i).val();
    var quantity= $(this).val();
    var value= price*quantity;
    var value=value.toFixed(2); /* rounding the value to two digits after period */
    value=value.toString().replace(/\./g, ',') /* converting periods to commas */
    $("#value"+i).val(value);
});

目前一切顺利 - 在“数量”字段填满后,乘法的结果正确显示在 id="value1" 字段中。

现在,更多字段应遵循该模式并在输入数量时计算值 - 如下所示:

[price2] * [quantity2] = [value2]
[price3] * [quantity3] = [value3]

等等

所以代码如下:

$('#add_field').click(function(){ /* do the math after another row of fields is added */
var allfields=$('[id^="quantity"]'); 
var limit=(allfields.length); /* count all fields where id starts with "quantity" - for the loop */
for (var count = 2; count < limit; count++) { /* starting value is now 2 */
$("#quantity"+count).keyup(function() {
    var cena = $("#price"+count).val();
    var quantity= $("#quantity"+count).val();
    var value= price*quantity;
    var value=value.toFixed(2);
    value=value.toString().replace(/\./g, ',')
    $("#value"+count).val(value);
});
}
});

问题是所有其他“值”字段仅在(重新)输入“quantity2”时计算,而根本不计算“value2”。

我想在寻址字段 and/or 触发计算时出错了。

我应该如何更正代码?

以防需要“add_field”函数来解决问题:

     $(document).ready(function(){  
      var i=1;  
      $('#add_field').click(function(){  
           i++;  
           $('#offer').append('<tr id="row'+i+'">
    <td><input type="text" name="prod_num[]" id="prod_num'+i+'" placeholder="Product number (6 digits)"></td><td><input type="text" name="prod_name[]" disabled></td>
    <td><input type="text" name="cena[]" id="price'+i+'" placeholder="Enter your price"></td>
    <td><input type="text" name="quantity[]" id="quantity'+i+'" placeholder="Enter quantity"></td>
    <td><input type="text" name="value[]" id="value'+i+'" disabled></td>
    <td><button type="button" name="remove_field" id="'+i+'" class="button_remove">X</button></td></tr>');
      });

首先要考虑的是可以得到一个选择器的length。例如:

var count = $("input").length; 

如果有,这里的值为 1。如果有四个,则值为 4.

您还可以使用 .each() 选项来迭代选择器中的每个项目。

$('#add_field').click(function(){
  var allFields = $('[id^="quantity"]'); 
  allFields.each(function(i, el){
    var c = i + 1;
    $(el).keyup(function() {
      var price = parseFloat($("#price" + c).val());
      var quantity = parseInt($(el).val());
      var value = price * quantity;
      value = value.toFixed(2);
      value = value.toString().replace(/\./g, ',');
      $("#value" + c).val(value);
    });
  });
});

您也可以根据 ID 本身创建关系。

$(function() {
  function calcTotal(price, qnty) {
    return (parseFloat(price) * parseInt(qnty)).toFixed(2);
  }

  $('#add_field').click(function() {
    var rowClone = $("#row-1").clone(true);
    var c = $("tbody tr[id^='row']").length + 1;
    rowClone.attr("id", "row-" + c);
    $("input:eq(0)", rowClone).val("").attr("id", "prod_num-" + c);
    $("input:eq(1)", rowClone).val("").attr("id", "price-" + c);
    $("input:eq(2)", rowClone).val("").attr("id", "quantity-" + c);
    $("input:eq(3)", rowClone).val("").attr("id", "value-" + c);
    $("button", rowClone).attr("id", "remove-" + c);
    rowClone.appendTo("table tbody");
  });

  $("table tbody").on("keyup", "[id^='quantity']", function(e) {
    var $self = $(this);
    var id = $self.attr("id").substr(-1);
    if ($("#price-" + id).val() != "" && $self.val() != "") {
      $("#value-" + id).val(calcTotal($("#price-" + id).val(), $self.val()));
    }
  });
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button id="add_field">Add Field</button>
<br />
<h2>Product</h2>
<table>
  <thead>
    <tr>
      <td>Number</td>
      <td>Name</td>
      <td>Price</td>
      <td>Quantity</td>
      <td>Total</td>
      <td></td>
  </thead>
  <tbody>
    <tr id="row-1">
      <td><input type="text" name="prod_num[]" id="prod_num-1" placeholder="Product number (6 digits)"></td>
      <td><input type="text" name="prod_name[]" disabled></td>
      <td><input type="text" name="cena[]" id="price-1" placeholder="Enter your price"></td>
      <td><input type="text" name="quantity[]" id="quantity-1" placeholder="Enter quantity"></td>
      <td><input type="text" name="value[]" id="value-1" disabled></td>
      <td><button type="button" name="remove_field" id="remove-1" class="button_remove">X</button></td>
    </tr>
  </tbody>
</table>

递增 ID 带来的麻烦多于它的价值,尤其是当您开始删除行以及添加行时。

这一切都可以使用通用 类 并在特定行实例中遍历来完成。

考虑到未来的行使用事件委托

简化示例:

// store a row copy on page load
const $storedRow = $('#myTable tr').first().clone()

// delegate event listener to permanent ancestor
$('#myTable').on('input', '.qty, .price', function(){
    const $row = $(this).closest('tr'),
          price = $row.find('.price').val(),
          qty =  $row.find('.qty').val();
    $row.find('.total').val(price*qty)
});

$('button').click(function(){
  // insert a copy of the stored row
  // delegated events will work seamlessly on new rows also
  const $newRow = $storedRow.clone();
  const prodName = 'Product XYZ';// get real value from user input
  $newRow.find('.prod-name').text(prodName)// 
  $('#myTable').append($newRow)
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button>Add row</button>

<table id="myTable">
  <tr>
    <td class="prod-name">Product 1</td>
    <td>Qty:<input type="number" class="qty" value="0"></td>
    <td>Price:<input type="number" class="price" value="0"></td>
    <td>Total:<input type="text" class="total" value="0" readonly></td>
  </tr>
  <tr>
     <td class="prod-name">Product 2</td>
    <td>Qty:<input type="number" class="qty" value="0"></td>
    <td>Price:<input type="number" class="price" value="0"></td>
    <td>Total:<input type="text" class="total" value="0" readonly></td>
  </tr>
  
</table>

Understanding Event Delegation