如何获取仅在数据表中选择输入表单的数组输入表单的值?

How to get the value of an array input form where the input form is only selected in the datatable?

提问人:Zen 提问时间:6/15/2023 更新时间:6/15/2023 访问量:18

问:

表单输入值无法根据数据表中选择的行显示

这是我尝试的:

let selRows = allocationTable.rows({
        selected: true
      }).data();
let data = [];
let qty_allocation = $("input[name='qty_allocation[]']")
        .map(function() {
          return $(this).val();
        }).get();
$.each(selRows, function(x, item) {
        data.push({
          "idbarcode": item.idbarcode,
          "idmain": item.idmain,
          "qty_allocation": qty_allocation
 });
});

我希望输入表单中的值按正确的顺序推送。 喜欢: qty_allocation(从表格输入):例 20(第一次输入),30(第二次输入)

然后: {idbarcode : 123, idmain : 1, qty_allocation : 20}, {idbarcode : 123, idmain : 1, qty_allocation : 30} 等

JavaScript jQuery 数组表 输入

评论


答: 暂无答案