为了账号安全,请及时绑定邮箱和手机立即绑定

使用 JavaScript 在 div 中创建表格

使用 JavaScript 在 div 中创建表格

跃然一笑 2023-12-04 14:38:02
超文本标记语言       <h1>Javascript Playground</h1>        <div id="first"></div>        <div id="second"></div>    </body>我需要在 div 中插入一个包含此信息的表格,包括代码、标题和产品列,而不接触 HTML(仅使用 JavaScript)let units = [    {        'code': 'COMP2110',        'title': 'Web Technology',         'offering': 'S1'    },      {        'code': 'COMP2010',        'title': 'Algorithms and Data Structures',         'offering': 'S1'    },]
查看完整描述

1 回答

?
慕田峪7331174

TA贡献1828条经验 获得超13个赞

也许你可以像下面这样开始:


let units = [{'code': 'COMP2110', 'title': 'Web Technology', 'offering': 'S1'}, {'code': 'COMP2010', 'title': 'Algorithms and Data Structures', 'offering': 'S1' } ];


// find your div first

const div = document.getElementById('first');


// building the HTML for the div

let html = `<table>

     <thead>

         <tr>

           ${Object.keys(units[0]).map(e => `<th>${e}</th>`).join('')}

         </tr>

     </thead>`


html += `<tbody>`;

units.forEach(e => html += `<tr>

      ${Object.values(e).map(v => `<td>${v}</td>`).join('')}

</tr>`);


html += `</tbody></table>`;


// adding HTML to your div

div.innerHTML = html;

table, th, td {

  border: 1px solid black;

}

<h1>Javascript Playground</h1>


<div id="first"></div>

<div id="second"></div>


查看完整回答
反对 回复 2023-12-04
  • 1 回答
  • 0 关注
  • 115 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信