使用数组forlooped填充表格单元格

时间:2019-01-25 03:45:25

标签: javascript html

我不知道如何解释我的情况,但是我只会演示当前的输出和预期的输出。这是我当前的输出

电流输出 enter image description here

预期输出 enter image description here

这是我当前的代码

$(function(){

      var a = '<?php echo $supp_dtl_1; ?>';
      a = JSON.parse(a);

      for (let i = 0; i < a.length; i++) {
        for (let j = 0; j < a[i].unit_price.length; j++) {  

            $('#supplier-table > tbody > ').not('#tr-td-1, #tr-td-2').append(
            '<td style="width: 60px;" class="ignore"><input style="width: 160px;" type="text" class="price number supp_num-" id="price-" value="'+a[i].unit_price[j]+'" ></td>'+
            '<td style="width: 60px;"><input style="width: 160px;" value="'+a[i].total_amount[j]+'" type="text" class="total" id="total-" readonly></td>'
            );
        }
      } 


  });

这是我的变量a中的结果

enter image description here

我的数组数据

[
 {"supplier_name":"James","unit_price":["5","100"],"total_amount":["2500","500"]},
 {"supplier_name":"Jan","unit_price":["4","400"],"total_amount":["2000","2000"]},
 {"supplier_name":"Nico","unit_price":["3","300"],"total_amount":["1500","1500"]}
]

如果我错过了一些细节,请发表评论,我会提供。我希望你们能帮助我。非常需要您的帮助。

Actual Demonstration

0 个答案:

没有答案