如何为表格中的每一行插入一个div

时间:2019-05-11 17:21:14

标签: javascript html dom

在我的页面中,我有一个表,该表是使用从服务器接收的Json响应动态构建的。因此,我动态创建一个表并插入行。因此,当我插入行时,我需要将div附加到Dom。因此,基本上,表就像是一行,一个div包含该行的值,再次是一行,并且div包含该行的值,依此类推。我能够构造表。但是如何在每行之后插入并渲染div?

[
  {
    'Id' : '1123',
    'Name': 'Xytrex Co.',
    'Description': 'Industrial Cleaning Supply Company',
    'Account Number': 'ABC15797531'
  },
  {
    'Id' :'11231'
    'Name': 'Watson and Powell, Inc.',
    'Description': 'Law firm. New York Headquarters',
    'Account Number': 'ABC24689753'
  }
];

所以在上面的json中,我希望ID在名称,desc,acc号的每一行上方的小div中出现。如何在行之间附加div?

0 个答案:

没有答案